DataRowCollection.Item[Int32] Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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.