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
2009-04-23 19:10:11
+1 Exceptional answer. Succinct.
Erich Mirabal
2009-04-23 19:35:47