Прочетете на английски Редактиране

Споделяне чрез


IDataRecord.Item[] Property

Definition

Gets the specified column.

Overloads

Item[Int32]

Gets the column located at the specified index.

Item[String]

Gets the column with the specified name.

Item[Int32]

Gets the column located at the specified index.

C#
public object this[int i] { get; }

Parameters

i
Int32

The zero-based index of the column to get.

Property Value

The column located at the specified index as an Object.

Exceptions

The index passed was outside the range of 0 through FieldCount.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Item[String]

Gets the column with the specified name.

C#
public object this[string name] { get; }

Parameters

name
String

The name of the column to find.

Property Value

The column with the specified name as an Object.

Exceptions

No column with the specified name was found.

Remarks

A case-sensitive lookup is performed first. If it fails, a second case-insensitive search is made.

This method is kana-width insensitive.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1