ObjectSoup Dispose Function. Dispose of the object. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Dispose of the object.

 

   
Syntax  

[C#]
void Dispose()
protected void Dispose(bool disposing)

[Visual Basic]
Sub Dispose()
Protected Sub Dispose(disposing As Boolean)

 

   

Params
 
Name Description
none  

 

   

Notes
 

You can call this function to explicitly dispose of an object and reduce the garbage collection overhead.

This method follows the standard design pattern for objects implementing the IDisposable interface. The protected Dispose method can be overridden for sub-classes wishing to dispose of additional objects.

Do not attempt to use an object after calling Dispose.

 

   

Example
 

None.