Reputation: 1249
What are the possible methods to merge values from two mutually exclusive DataSets' into a separate DataSet?
Upvotes: 1
Views: 237
Reputation: 25277
DataSet a = // Some Pre-filled DataSet.
DataSet b = // Some Other Pre-filled DataSet.
DataSet c = a.Copy();
c.Merge(b);
Upvotes: 4