I have two sets (ILists) where I need all the items from the 1st list, where the item is not in the second list.
Can anyone point me to the best way of achieving this with a LINQ statement?
From stackoverflow
-
How about the
Exceptmethod:var firstMinusSecond = first.Except(second);
0 comments:
Post a Comment