예제 #1
0
 /// <summary>
 /// Returns the PooledBitStream into the static BitStreamPool
 /// </summary>
 public new void Dispose()
 {
     if (!isDisposed)
     {
         isDisposed = true;
         BitStreamPool.PutBackInPool(this);
     }
 }
예제 #2
0
 /// <summary>
 /// Returns the PooledBitStream into the static BitStreamPool
 /// </summary>
 public new void Dispose()
 {
     BitStreamPool.PutBackInPool(this);
 }