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
List list1 = new List(); List list2 = new List(); List list3 = list1.Except(list2).ToList();