What steps will reproduce the problem?
1. All lua sample code can not run
2.
3.
What is the expected output? What do you see instead?
For example:
lua code : Forms=luanet.System.Windows.Forms
Returned error message:"A .NET exception occured in user-code"
Please provide any additional information below.
After the R15 version is a problem, I found that "Issue 17" is not correct.
ObjectTranslator.cs line:216
if (assembly == null)
{
assembly = Assembly.Load(AssemblyName.GetAssemblyName(assemblyName));
}
Change to:
if (assembly == null)
{
if (File.Exists(assemblyName)) assembly = Assembly.Load(AssemblyName.GetAssemblyName(assemblyName));
}
Original issue reported on code.google.com by abalonel...@gmail.com on 18 May 2011 at 12:24
Original issue reported on code.google.com by
abalonel...@gmail.com
on 18 May 2011 at 12:24