DataRowCollection.Item[Int32] Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- index
- Int32
The zero-based index of the row to return.
The specified DataRow.
The index value is greater than the number of items in the collection.
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
Use the Contains method to determine whether a specific value exists in the key column of a row.
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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: