标签: c# .net ado.net
将两个互斥的DataSet中的值合并到一个单独的DataSet中的可能方法是什么?
答案 0 :(得分:4)
DataSet a = // Some Pre-filled DataSet. DataSet b = // Some Other Pre-filled DataSet. DataSet c = a.Copy(); c.Merge(b);