35 references to
Accessibility_Core_App (3)
DataBindingExample.cs (3)
79
Text = dataSet.Tables[0].Rows
[
i]["StuName"].ToString()
102
string itemName = dataSet.Tables[0].Rows
[
i][0].ToString();
108
item.SubItems.Add(dataSet.Tables[0].Rows
[
i][j].ToString());
System.Data.Common (32)
System\Data\Common\DBSchemaRow.cs (1)
27
dataTable.Rows
[
i][sortindex] = i;
System\Data\DataColumnCollection.cs (1)
434
_table.Rows
[
i].ClearError(column);
System\Data\DataRowCollection.cs (1)
198
public void RemoveAt(int index) => Remove(this
[
index]);
System\Data\DataSet.cs (3)
1369
DataTable.CopyRow(destTable, table.Rows
[
j]);
1398
DataRow row = rows
[
rowIndex];
1559
DataRow row = table.Rows
[
j];
System\Data\DataTable.cs (14)
702
DataRow row = Rows
[
i];
757
int recordsPerRow = Rows
[
i].CopyValuesIntoStore(storeList, nullbitList, recordsConsumed);
903
DataRow row = Rows
[
rowIndex];
934
DataRow row = Rows
[
rowIndex];
1390
if (Rows
[
i].HasErrors)
3102
row = Rows
[
i];
3135
row = Rows
[
i];
3164
DataRow row = Rows
[
i];
7018
DataRow tableRow = Rows
[
j];
7027
DataRow tableRow = Rows
[
j];
7040
DataRow tableRow = Rows
[
j];
7085
DataRow row = column._table.Rows
[
j];
7105
DataRow row = column._table.Rows
[
j];
7170
DataRow dr = Rows
[
j];
System\Data\DataTableReader.cs (6)
190
_currentDataRow = _currentDataTable.Rows
[
_rowCounter];
202
_currentDataRow = _currentDataTable.Rows
[
_rowCounter];
849
tempSchemaTable.Rows
[
key.Ordinal][IsKeyColumn] = true;
952
if (_currentDataRow == _currentDataTable.Rows
[
_rowCounter + 1])
968
if (_currentDataRow == _currentDataTable.Rows
[
_rowCounter - 1])
981
_currentDataRow = _currentDataTable.Rows
[
_rowCounter];
System\Data\TypedTableBaseExtensions.cs (1)
99
return (TRow)source.Rows
[
index];
System\Data\xmlsaver.cs (3)
2332
_rowsOrder[rc
[
j]] = j;
2424
GenerateRow(table.Rows
[
rowNum]);
2440
DataRow row = table.Rows
[
rowNum];
System\Xml\XmlDataDocument.cs (2)
855
if (row == row.Table.Rows
[
i])
862
refRow = row.Table.Rows
[
i];