DataRowCollection.Item[Int32] Propriedade

Definição

Obtém a linha no índice especificado.

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

Parâmetros

index
Int32

O índice baseado em zero da linha a ser retornada.

Valor da propriedade

O DataRow especificado.

Exceções

O valor de índice é maior que o número de itens na coleção.

Exemplos

O exemplo a seguir imprime o valor da coluna 1 de cada linha em um 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

Comentários

Use o Contains método para determinar se existe um valor específico na coluna de chave de uma linha.

Aplica-se a

Confira também