LuaInterface.LuaTable.Dispose C# (CSharp) Method

Dispose() public method

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

Usage Example

コード例 #1
0
ファイル: LuaBehaviour.cs プロジェクト: woshihuo12/UnityHello
 private void SafeRelease(ref LuaTable table)
 {
     if (table != null)
     {
         table.Dispose();
         table = null;
     }
 }
All Usage Examples Of LuaInterface.LuaTable::Dispose