예제 #1
0
파일: TestLua.cs 프로젝트: haiweizhang/NLua
 public void MethodOverload(TestClass testClass)
 {
     Console.WriteLine("Method with testclass param");
 }
예제 #2
0
파일: TestLua.cs 프로젝트: haiweizhang/NLua
 public static int callOverridable(TestClass test, int x, int y)
 {
     return(test.overridableMethod(x, y));
 }