Tao.Lua.Lua.lua_pop C# (CSharp) 메소드

lua_pop() 공개 정적인 메소드

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