banupriya
banupriya

Reputation: 1249

Merge values from two mutually exclusive DataSets' into a separate DataSet

What are the possible methods to merge values from two mutually exclusive DataSets' into a separate DataSet?

Upvotes: 1

Views: 237

Answers (1)

Kyle Rosendo
Kyle Rosendo

Reputation: 25277

DataSet a = // Some Pre-filled DataSet.
DataSet b = // Some Other Pre-filled DataSet.

DataSet c = a.Copy();
c.Merge(b);

Upvotes: 4

Related Questions