Tao.Lua.Lua.lua_newtable C# (CSharp) Метод

lua_newtable() публичный статический Метод

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
Результат void
        public static void lua_newtable(lua_State L)
        {
            lua_createtable(L, 0, 0);
        }
Lua