DataRowCollection.Item[Int32] Property

Definition

Gets the row at the specified index.

C#
public System.Data.DataRow this[int index] { get; }

Parameters

index
Int32

The zero-based index of the row to return.

Property Value

The specified DataRow.

Exceptions

The index value is greater than the number of items in the collection.

Examples

The following example prints the value of column 1 of each row in a DataRowCollection.

C#
private void PrintRows(DataTable table)
{
    // Print the CompanyName column for every row using the index.
    for(int i = 0; i < table.Rows.Count; i++)
    {
        Console.WriteLine(table.Rows[i]["CompanyName"]);
    }
}

Remarks

Use the Contains method to determine whether a specific value exists in the key column of a row.

Applies to

Product Versions
.NET 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

See also