IDataRecord.Item[] 属性

定义

获取指定的列。

重载

Item[Int32]

获取位于指定索引处的列。

Item[String]

获取具有指定名称的列。

Item[Int32]

获取位于指定索引处的列。

public:
 property System::Object ^ default[int] { System::Object ^ get(int i); };
public object this[int i] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(i As Integer) As Object

参数

i
Int32

要获取的列的从零开始的索引。

属性值

位于作为 Object 指定索引处的列。

例外

传递的索引位于 0 至 FieldCount 的范围之外。

适用于

Item[String]

获取具有指定名称的列。

public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public object this[string name] { get; }
member this.Item(string) : obj
Default Public ReadOnly Property Item(name As String) As Object

参数

name
String

要查找的列的名称。

属性值

具有指定名称、作为 Object 的列。

例外

未找到具有指定名称的列。

注解

首先执行区分大小写的查找。 如果失败,将进行第二次不区分大小写的搜索。

此方法不区分假名宽度。

适用于