Beispiel #1
0
 /// <summary>
 /// Returns the PooledBitReader into the static BitReaderPool
 /// </summary>
 public void Dispose()
 {
     if (!isDisposed)
     {
         isDisposed = true;
         BitReaderPool.PutBackInPool(this);
     }
 }