Is there a relatively straightforward way to get the intersection of two DataTables in .NET?
I can think of the obvious ways (iterating over both tables myself in O(
Since you are using .NET 2.0, you should look at re-implementing the Intersect method.
This psuedo-code should be very helpful for you.