Property this
this[string]
Gets the column with the specified name.
public object this[string name] { get; }
Parameters
namestringThe name of the column to find.
Property Value
- object
 The column with the specified name as an object.
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
iintThe zero-based index of the column to get.
Property Value
- object
 The column located at the specified index as an object.
Exceptions
- IndexOutOfRangeException
 The index passed was outside the range of 0 through FieldCount.