Struct CsvReader<T>.Enumerator
Enumerator for raw CSV record fields.
public ref struct CsvReader<T>.Enumerator : IEnumerator<CsvRecordRef<T>>, IEnumerator, IDisposable
- Implements
Properties
Current
Current record.
[UnscopedRef]
public CsvRecordRef<T> Current { get; }
Property Value
- CsvRecordRef<T>
Methods
Dispose()
Disposes the parser.
public void Dispose()
MoveNext()
Attempts to read the next record.
public bool MoveNext()
Returns
- bool
true
if a record was read; otherwise,false
.