Tuesday, 26 April 2011

How to append one DataTable to another DataTable

DataTable dtAttach = new DataTable();
 
DataTable dtQuantity= new DataTable();
 
DataTable dtPrice= new DataTable();
 
dtAttach = dtQuantity.Copy();
dtAttach.Merge(dtPrice, true);

No comments:

Post a Comment