LuaInterface.LuaDLL.lua_createtable C# (CSharp) Method

lua_createtable() private method

private lua_createtable ( IntPtr luaState, int narr, int nrec ) : void
luaState System.IntPtr
narr int
nrec int
return void
        public static extern void lua_createtable(IntPtr luaState, int narr, int nrec);
        public static void lua_newtable(IntPtr luaState)

Usage Example

示例#1
0
 public void LuaNewTable()
 {
     LuaDLL.lua_createtable(L, 0, 0);
 }
All Usage Examples Of LuaInterface.LuaDLL::lua_createtable
LuaDLL