This topic has not yet been rated - Rate this topic

DataRowCollection.Item Property

Gets the row at the specified index.

Namespace: System.Data
Assembly: System.Data (in system.data.dll)

public DataRow this [
	int index
] { get; }
/** @property */
public DataRow get_Item (int index)

Not applicable.

Parameters

index

The zero-based index of the row to return.

Property Value

The specified DataRow.
Exception typeCondition

IndexOutOfRangeException

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

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

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"]);
    }
}

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0, 1.0

XNA Framework

Supported in: 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.