Beispiel #1
0
 public void Dispose()
 {
     if (dw_ != null)
     {
         dw_.Dispose();
         dw_ = null;
     }
 }
Beispiel #2
0
 public ExaDataWriter(Encoding encoding, int bufferSize = 655360)
 {
     dw_ = new InternalDataWriter(encoding, bufferSize);
 }