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

                Reset();
                GetColumns();
            }
Exemplo n.º 2
0
 public void Dispose()
 {
     _currentRow = null;
     _parent     = null;
 }