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

lua_getglobal() public static method

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
return void
        public static void lua_getglobal(lua_State L, string s)
        {
            lua_getfield(L, LUA_GLOBALSINDEX, s);
        }
Lua