Tao.Lua.Lua.lua_newtable C# (CSharp) Method

lua_newtable() public static method

Creates a new empty table and pushes it onto the stack.
It is equivalent to lua_createtable(L, 0, 0).
public static lua_newtable ( lua_State L ) : void
L lua_State
return void
        public static void lua_newtable(lua_State L)
        {
            lua_createtable(L, 0, 0);
        }
Lua