CsvRecordItem(Int32) Property

Gets or sets the value of the column in the CSV file that is at the specified index.

Definition

Namespace: FolkerKinzel.CsvTools
Assembly: FolkerKinzel.CsvTools (in FolkerKinzel.CsvTools.dll) Version: 2.0.1+2345335399184346d9b2cc992ed5c814406052c1
C#
public ReadOnlyMemory<char> this[
	int index
] { get; set; }

Parameters

index  Int32
The zero-based index of the column in the CSV file whose value is being obtained or set.

Return Value

ReadOnlyMemoryChar
The item at the specified index.

Exceptions

IndexOutOfRangeExceptionindex is less than Zero or greater or equal than Count.

See Also