Returns the value of the specified column in its native format.
Public ReadOnly Overrides Property Item( ByVal colID As Integer ) As Object
public override object this[int colID] {get;}
colID The ID number of the column. The value must be in the range [0,ULDataReader.FieldCount-1]. The first column in the cursor has an ID value of zero.
The column value as the .NET type most appropriate for the column or DBNull if column is NULL.
ULException class A SQL error occurred.
In C#, this property is the indexer for the ULDataReader class.
This method is identical in functionality to the ULDataReader.GetValue(int) method.