/// <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(); }
public void Dispose() { _currentRow = null; _parent = null; }