I have two EmailAddress generic lists, I wanted a simple way of just getting all the EmailAddress objects that are in List1 that aren\'t in List2.
I\'m thinking a le
You can use the Except linq method:
var list1 = // First list generation var list2 = // Second list generation var result = list1.Except(list2);