I have two lists, one which is a subset of the other.
List 1: A, B, C, D, E
List 2: B, D, E
I'd like to end up with a single collection of the superset with items contained in the subset flagged. This seems to be the sort of thing LINQ could do, but I'm not sure of the syntax.
Result: A, false
B, true
C, false
D, true
E, true