-
I'm not sure when this started, but I get System.EntryPointNotFoundException on OS X for luanet_pushwstring:
```
at (wrapper managed-to-native) KeraLua.NativeMethods:LuaPushString (intptr,string…
-
A script, several years old and working, suddenly stopped working after upgrading to the latest NLua/KeraLua.
A repro for the error is:
```csharp
namespace NLuaTest01
{
using NLua;
u…
-
I was attempting to use the NLua Nuget package, and I am getting the error
`Failed to add reference to 'lua53'.
Please make sure that the file is accessible, and that it is a valid assembly or C…
-
Hi.
Im help u coding this lib if U refactor to C#.
F# insane for me.
Thanks.
ghost updated
5 years ago
-
This is VERY VERY hard to debug, so please hang on with me...
-
I'm trying to write the contents of LuaTable object to string since I want to write it to file. The ToString() method returns a "table". Is there a way to write the LuaTable object to string?
-
this static method is work
```
function Main_Main.handleClick(control, mouseevent)
print(control);//work
end
function Main_Main:Awake()
self.MButton.Click:Add(self.handleClick)
end
``…
-
My specific interest is in Mac OS X, but there are no instructions for _any_ platform.
I have already downloaded and installed Mono, and have successfully built and run C# code with it, so I know it'…
-
I have an extension method for Graphics as such:
```
public static void DrawImage2(this Graphics g, Bitmap srcImg, int x, int y, int srcX, int srcY, int width, int height)
{
g.DrawImage(srcImg…
-
for example, I have this class:
```csharp
class Someclass
{
public static string TestFunction(long id, string str)
{
return str+"123";
}
}
```
in moonsharp, I can do …