LuaInterface.LuaTable.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
		public void Dispose() {} 

Usage Example

示例#1
0
 private void SafeRelease(ref LuaTable table)
 {
     if (table != null)
     {
         table.Dispose();
         table = null;
     }
 }
All Usage Examples Of LuaInterface.LuaTable::Dispose