Click or drag to resize
Accord.NET (logo)

CsvReaderItem Property (Int32, String)

Gets the field with the specified name and record position. [M:hasHeaders] must be .

Namespace:  Accord.IO
Assembly:  Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax
public string this[
	int record,
	string field
] { get; }
Request Example View Source

Parameters

record
Type: SystemInt32
field
Type: SystemString

Property Value

Type: String
The field with the specified name and record position.
Exceptions
ExceptionCondition
ArgumentNullExceptionfield is or an empty string.
InvalidOperationException The CSV does not have headers ([M:HasHeaders] property is ).
ArgumentExceptionfield not found.
ArgumentOutOfRangeException Record index must be > 0.
InvalidOperationException Cannot move to a previous record in forward-only mode.
EndOfStreamException Cannot read record at record.
MalformedCsvException The CSV appears to be corrupt at the current position.
ObjectDisposedException The instance has been disposed of.
See Also