tags:

views:

69

answers:

1

I have two lists and I want to select items that are not in the second list from the first list. I have no Linq experience to I think this should be a good way to start learning.

+6  A: 

You can use Except for this:

var query = list1.Except(list2);
Ryan Brunner
+1 Exceptional answer. Succinct.
Erich Mirabal