Exemple #1
0
 public void Dispose()
 {
     if (br_ != null)
     {
         br_.Dispose();
         br_ = null;
     }
 }
Exemple #2
0
 public ExaBinaryReader(Encoding encoding, int bufferSize = 655360)
 {
     br_ = new InternalBinaryReader(encoding, bufferSize);
 }