I have the following code:
List test1 = new List { \"@bob.com\", \"@tom.com\" }; List test2 = new List
No need to use Linq like this here, because there already exists an extension method to do this for you.
Enumerable.Except
http://msdn.microsoft.com/en-us/library/bb336390.aspx
You just need to create your own comparer to compare as needed.