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

lua_getglobal() 공개 정적인 메소드

Pushes onto the stack the value of the global name.
public static lua_getglobal ( lua_State L, string s ) : void
L lua_State
s string
리턴 void
        public static void lua_getglobal(lua_State L, string s)
        {
            lua_getfield(L, LUA_GLOBALSINDEX, s);
        }
Lua