Example #1
0
 /// <summary>
 /// Close the record reader, which should in turn close the stream
 /// </summary>
 public void Close()
 {
     if (mReader != null)
     {
         mReader.Close();
     }
 }
Example #2
0
 /// <summary>
 /// Close the record reader, which should in turn close the stream
 /// </summary>
 public void Close()
 {
     _reader?.Close();
 }