コード例 #1
0
 public void Dispose()
 {
     if (this._stream != null)
     {
         this._stream.Close();
         this._stream = null;
     }
     this._fileName = null;
     this._dataMap  = null;
     GC.SuppressFinalize(this);
 }
コード例 #2
0
 public void Dispose()
 {
     if (_stream != null)
     {
         _stream.Close();
         _stream = (Stream)null;
     }
     _fileName = (string)null;
     _dataMap  = (DataMap)null;
     GC.SuppressFinalize((object)this);
 }
コード例 #3
0
 private void ReInitialize()
 {
     _dataMap = new DataMap();
     _dataMap.AddFirst((DataBlock)new FileDataBlock(0L, _stream.Length));
     _totalLength = _stream.Length;
 }
コード例 #4
0
 public void Dispose()
 {
     if (_stream != null)
     {
         _stream.Close();
         _stream = (Stream)null;
     }
     _fileName = (string)null;
     _dataMap = (DataMap)null;
     GC.SuppressFinalize((object)this);
 }
コード例 #5
0
ファイル: DataMap.cs プロジェクト: JamesH001/SX1231
 internal Enumerator(DataMap map)
 {
     this._map = map;
     this._version = map._version;
     this._current = null;
     this._index = -1;
 }
コード例 #6
0
 private void ReInitialize()
 {
     this._dataMap = new DataMap();
     this._dataMap.AddFirst(new FileDataBlock(0L, this._stream.Length));
     this._totalLength = this._stream.Length;
 }
コード例 #7
0
 private void ReInitialize()
 {
     _dataMap = new DataMap();
     _dataMap.AddFirst((DataBlock) new FileDataBlock(0L, _stream.Length));
     _totalLength = _stream.Length;
 }
コード例 #8
0
 private void ReInitialize()
 {
     this._dataMap = new DataMap();
     this._dataMap.AddFirst(new FileDataBlock(0L, this._stream.Length));
     this._totalLength = this._stream.Length;
 }
コード例 #9
0
 public void Dispose()
 {
     if (this._stream != null)
     {
         this._stream.Close();
         this._stream = null;
     }
     this._fileName = null;
     this._dataMap = null;
     GC.SuppressFinalize(this);
 }