4 references to InsertRow
System.Data.Common (4)
System\Data\DataRowCollection.cs (3)
61_table.InsertRow(row, -1, pos); 84_table.InsertRow(row, pos + 1, pos); 98_table.InsertRow(row, pos + 1, pos > _list.Count ? -1 : pos);
System\Data\DataTable.cs (1)
2739internal void AddRow(DataRow row, int proposedID) => InsertRow(row, proposedID, -1);