This row already belongs to another table.
DataTable的row要想加入到另一个DataTable可以用以下方法:
tb.Rows.Add(row.ItemArray)
一直记得是List的元素不能直接加入到另一个,原来是记错了,List完全可以,而且同一个对象可以在同一个List中添加多次。
DataTable的row要想加入到另一个DataTable可以用以下方法:
tb.Rows.Add(row.ItemArray)
一直记得是List的元素不能直接加入到另一个,原来是记错了,List完全可以,而且同一个对象可以在同一个List中添加多次。