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

luaL_getmetatable() public static method

Pushes onto the stack the metatable associated with name tname in the registry (see luaL_newmetatable).
public static luaL_getmetatable ( lua_State L, string n ) : void
L lua_State
n string
return void
        public static void luaL_getmetatable(lua_State L, string n)
        {
            lua_getfield(L, LUA_REGISTRYINDEX, n);
        }
Lua