当我从保存在 insDelRowInfoList 的数据集中删除特定行后尝试从键值对 insDelRowInfoList 访问 KEY 时,我正面临 System.Data.RowNotInTableException。
List<KeyValuePair<DataRow, String>> insDelRowInfoList = new List<KeyValuePair<DataRow, String>>();
insDelRowInfoList.Add(new KeyValuePair<DataRow, string>(newDataSet.Tables[1].Rows[rowCount],"has been inserted"));
foreach (KeyValuePair<DataRow, string> dataRow in insDelRowInfoList)
newDataSet.Tables[1].Rows.Remove(dataRow.Key);
请帮助如何解决这个问题。