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