I have 2 separate List and I need to compare the two and get everything but the intersection of the two lists. How can I do this (C#)?
|
1
|
|||||||||||
|
|
|
You can use Except to get everything but the intersection of the two lists.
If you want to get everything but the union:
(The union is everything in both lists - everything but the union is the empty set...) |
||||||
|
|
|
If you mean the set of everything but the intersection (symmetric difference) you can try:
|
||||
|
|
|
Do you mean everything that's only in one list or the other? How about:
That's likely to be somewhat inefficient, but it fairly simply indicates what you mean (assuming I've interpreted you correctly, of course). |
||
|
|
|
|
Use Except:
|
||
|
|
|
|
||
|
|
|
|
Something like this?
|
||
|
|
