Gets the value of the specified column in its native format given the column ordinal.
In C#, this property is the indexer for the MimerDataReader class.
'Declaration
Public Overloads Overrides NotOverridable ReadOnly Property Item( _
ByVal As Integer _
) As Object
public override object Item(
int
) {get;}
public read-only property Item(
: Integer
): TObject; override;
public override function get Item(
: int
) : Object
public: __property Object* get_Item(
int
) override;
Parameters
- i
- The zero-based column ordinal position.
Property Value
The value of the specified column in its native format.
.NET Framework
Version 2.0 or later