for example C# code: public class Test { static public void Method(int a, params int[] others) {} } lua code: Test.Method(1)--invalid arguments to method: Test.Method Test.Method(1, {}) --correct