/// <summary> /// Gets a PooledBitWriter from the static BitWriterPool /// </summary> /// <returns>PooledBitWriter</returns> public static PooledBitWriter Get(Stream stream) { PooledBitWriter writer = BitWriterPool.GetWriter(stream); writer.isDisposed = false; return(writer); }
/// <summary> /// Gets a PooledBitWriter from the static BitWriterPool /// </summary> /// <returns>PooledBitWriter</returns> public static PooledBitWriter Get(Stream stream) { return(BitWriterPool.GetWriter(stream)); }