Reputation: 196459
I have two collections that are both:
List<MyObject>
I want to find out which objects are in the full list but not the other list. What is the fastest ways to do something like this:
var inOneButNotTheOther =
fullCollection.Remove(oldCollection, new MyObjectComparer());
Upvotes: 2
Views: 130