/// <inheritdoc/>
 public void Dispose()
 {
     fileOffset  = 0;
     startAddr   = 0;
     endAddr     = 0;
     currentAddr = 0;
     if (ownOwner && owner != null)
     {
         owner.Dispose();
     }
     owner = null;
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public void Dispose()
 {
     fileOffset  = 0;
     startAddr   = null;
     endAddr     = null;
     currentAddr = null;
     if (creator != null)
     {
         creator.Dispose();
     }
     creator = null;
 }