SqlCeDataReader.Item Property (Int32)
Gets the value of the specified column in its native format given the column ordinal.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
Visual Basic (Declaration)
Public Overrides ReadOnly Default Property Item ( _ index As Integer _ ) As Object Get
Visual Basic (Usage)
Dim instance As SqlCeDataReader Dim index As Integer Dim value As Object value = instance(index)
C#
public override Object this[ int index ] { get; }
Visual C++
public: virtual property Object^ default[int index] { Object^ get (int index) override; }
F#
abstract Item : Object override Item : Object
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- index
- Type: System.Int32
The column ordinal.
Implements
IDataRecord.Item[Int32]See Also