insDelRowInfoList に保存したデータセットから特定の行を削除した後、keyvaluepair 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);
この問題を解決する方法を教えてください。