lua_unref() public static method

public static lua_unref ( IntPtr luaState, int reference ) : void
luaState IntPtr
reference int
return void
示例#1
0
 public void LuaUnRef(int reference)
 {
     LuaDLL.lua_unref(L, reference);
 }
示例#2
0
 /*
  * Lets go of a previously allocated reference to a table, function
  * or userdata
  */
 internal void dispose(int reference)
 {
     LuaDLL.lua_unref(luaState, reference);
 }