Ejemplo n.º 1
0
            /// <summary>
            /// our constructor (would rather have this protected, but it wasn't having it...)
            /// </summary>
            public GenericSeparatedValueFileEnumerator(GenericSeparatedValueReader parent)
            {
                _parent = parent;
                _parent.ResetStream();

                _data = new StreamReader(_parent._dataStream);
                Reset();
                GetColumns();
            }
Ejemplo n.º 2
0
 public void Dispose()
 {
     _currentLine = null;
     _data        = null;
     _parent      = null;
 }