DataTable 去重合并

1 //合并  
2 dt.Merge(dt2);
3  //去重  
4  dt = dt.AsDataView().ToTable(true);
原文地址:https://www.cnblogs.com/wanghk/p/3685541.html