DataRowCollection.Item[Int32] Property

Definition

Gets the row at the specified index.

public:
 property System::Data::DataRow ^ default[int] { System::Data::DataRow ^ get(int index); };
public System.Data.DataRow this[int index] { get; }
member this.Item(int) : System.Data.DataRow
Default Public ReadOnly Property Item(index As Integer) As DataRow

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.

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"]);
    }
}
Private Sub PrintRows(table As DataTable)
     ' Print the first column for every row using the index.
     Dim i As Integer
     For i = 0 To table.Rows.Count - 1
         Console.WriteLine(table.Rows(i)(0))
     Next i
End Sub

Remarks

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

Applies to

See also