Dispose() public method

Releases all resource used by the IABLoader object.
Call Dispose when you are finished using the IABLoader. The Dispose method leaves the IABLoader in an unusable state. After calling Dispose, you must release all references to the IABLoader so the garbage collector can reclaim the memory that the IABLoader was occupying.
public Dispose ( ) : void
return void
Esempio n. 1
0
 /// <summary>
 /// 释放资源
 /// </summary>
 public void Dispose()
 {
     if (abLoader != null)
     {
         abLoader.Dispose();
     }
 }
Esempio n. 2
0
 public void DisPose()
 {
     if (assetLoader != null)
     {
         assetLoader.Dispose();
     }
 }
Esempio n. 3
0
 public void Dispose()
 {
     iABLoader.Dispose();
 }
Esempio n. 4
0
 // 释放过程
 public void Dispose()
 {
     mAssetLoader.Dispose();
 }