DataRowCollection.Item[Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la ligne à l'index spécifié.
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
Paramètres
- index
- Int32
Index de base zéro de la ligne à retourner.
Valeur de propriété
DataRow spécifié.
Exceptions
La valeur d'index est supérieure au nombre d'éléments dans la collection.
Exemples
L’exemple suivant imprime la valeur de la colonne 1 de chaque ligne d’un 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
Remarques
Utilisez la Contains méthode pour déterminer si une valeur spécifique existe dans la colonne clé d’une ligne.