Reputation: 54017
LINQ to objects has the incredibly useful Union
, Intersect
, and Except
methods. Sadly, there's a client I'm doing work for and they are mandating .NET 2.0 so LINQ is not an option. I looked through the reflected code and it didn't reverse well at all.
Is there a .NET 2.0 library or easy implementation of Union
, Intersect
, and Except
?
Upvotes: 2
Views: 398
Reputation: 1500235
Any reason not to use LINQBridge? Get your LINQ to Objects goodness while still targeting .NET 2.0 :)
Upvotes: 7