i want to compare the two data table columns and find duplicates
for example
dataTable1
autoid ponbr polinenbr quantity
1 0001 10 5
2 0002 12 6
3 0003 15 7
dataTable2
autoid ponbr polinenbr quantity
1 0001 10 5
2 0002 15 7
3 0003 12 9
in the above two dataTable i would like to compare the ponbr and polinenbr column and find the duplicates and get the autoid..
how to do it in vb.net
thanks in advance..