Hi, Having this : IEnumerable string > tagsToKeep The following query can give me duplicates: var list = from c in desc.Elements( "value" ) from c2 in tagsToKeep where ( string )c.Attribute( "value" ) != ( string )c2 select c; Since I can't use distinct, how can I do ? I need to use except but I can't find a way to do this... Thanks !
Read More...