Read this article in your language IT | EN | DE | ES
1: Public Sub MergeDataTables(source as DataTable, destination As DataTable)
2: destination.BeginLoadData()
3:
4: For i As Integer=0 To source.Rows.Count - 1
5: destination.LoadDataRow(source.Rows(i).ItemArray,True)
6: Next
7:
8: destination.EndLoadData()
9: End Sub
Reference: by All-Star at http://forums.asp.net/p/1075389/1578419.aspx
240aa62f-6dfa-402c-b2c4-c78331d5cf7b|1|5.0
Programming, VB.NET
vb.net, datatables, net