Table of Contents

Struct CsvRecordEnumerable<T>

Namespace
FlameCsv.Enumeration
Assembly
FlameCsv.Core.dll

Enumerates data into CSV records.

public readonly struct CsvRecordEnumerable<T> : IEnumerable<CsvRecord<T>>, IEnumerable where T : unmanaged, IBinaryInteger<T>

Type Parameters

T

Token type

Implements

Remarks

This type is only intended to be used directly within a foreach loop. Using it with LINQ methods may lead to unexpected behavior and runtime errors.

Methods

GetEnumerator()

Returns an enumerator that iterates through the collection.

public CsvRecordEnumerator<T> GetEnumerator()

Returns

CsvRecordEnumerator<T>

An enumerator that can be used to iterate through the collection.