LuaInterface.LuaTable.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 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