Exemplo n.º 1
0
 public void Dispose()
 {
     if (bw_ != null)
     {
         bw_.Dispose();
         bw_ = null;
     }
 }
Exemplo n.º 2
0
 public ExaBinaryWriter(Encoding encoding, int bufferSize = 655360)
 {
     bw_ = new InternalBinaryWriter(encoding, bufferSize);
 }