Exemplo n.º 1
0
 public virtual Dispose(bool isDisposing)
 {
     if (!isDisposed)     //only clean up once
     {
         //clean up unmanaged resource here
         //in this case we don't have any
         //clean up managed resources (IE those that implemetn IDisposable only if
         //Dispose() was called (not the case when invoked during finalisation)
         if (isDisposing)
         {
             if (myDisposableMember == null)
             {
                 myDisposableMember.Dispose()
                 myDisposablemember = null;
             }
         }
         //mark this instance as cleaned up
         isDisposed = true;
     }
 }