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

lua_pop() public static method

Pops n elements from the stack.
public static lua_pop ( lua_State L, int n ) : void
L lua_State
n int
return void
        public static void lua_pop(lua_State L, int n)
        {
            lua_settop(L, -(n) - 1);
        }
Lua