Complement of Two Lists?
问题 lets say I have a list of strings: A,B,C,D Then another list of strings B,C,D I want to know what elements are in the first list that aren't in the second list, so the result would be A I don't know the name of the extension method to do this is. I know I can use concat, union, intersect for similar list comparisons, but just don't know the name to accomplish this particular task. Addendum, I am interested in duplicates, so if the first list is: A,A,A,B,C,D and the second list is B,C,D i want