Dinah
Dinah

Reputation: 54017

Non-LINQ implementations of Union, Intersect, and Except

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

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1500235

Any reason not to use LINQBridge? Get your LINQ to Objects goodness while still targeting .NET 2.0 :)

Upvotes: 7

Related Questions