Property this
this[string]
Gets the column with the specified name.
public object this[string name] { get; }
Parameters
name
stringThe name of the column to find.
Property Value
Exceptions
- IndexOutOfRangeException
No column with the specified name was found.
this[int]
Gets the column located at the specified index.
public object this[int i] { get; }
Parameters
i
intThe zero-based index of the column to get.
Property Value
Exceptions
- IndexOutOfRangeException
The index passed was outside the range of 0 through FieldCount.