我面临问题..
DataTable Dt1 = table1;
DataTable Dt2 = Dt1.Copy();
DataRow[] row = Dt1.Select("Name = 'Test'");
foreach (DataRow row in Dt2)
{
Dt2.Rows.Remove(row); // Here The given DataRow is not in the current DataRowCollection
}
它给出了例外,因为我从不同的行中过滤日期并从不同的行中删除它。
谢谢, 希瓦姆