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
list1.Except(list2);
EDIT: Example here.