G
Guest
hi
in the Walkthrough: Handling a Concurrency Exception example seems to be an
error.
because of my actual knowlage, i cannot solve the problem
the expression custRow.Item does not exist!
private string GetRowData(NorthwindDataSet.CustomersRow custRow,
DataRowVersion RowVersion)
{
string rowData = "";
for (int i = 0; i < custRow.ItemArray.Length ; i++ )
{
rowData = rowData + custRow.Item(i, RowVersion).ToString() + " ";
}
return rowData;
}
thanks
in the Walkthrough: Handling a Concurrency Exception example seems to be an
error.
because of my actual knowlage, i cannot solve the problem
the expression custRow.Item does not exist!
private string GetRowData(NorthwindDataSet.CustomersRow custRow,
DataRowVersion RowVersion)
{
string rowData = "";
for (int i = 0; i < custRow.ItemArray.Length ; i++ )
{
rowData = rowData + custRow.Item(i, RowVersion).ToString() + " ";
}
return rowData;
}
thanks