Hi, I'm probably doing something wrong: This query works...unless tagsToKeep is empty ! // Filter this to remove the tagsToKeep : We'll only have the tags to remove ! var list = from c in desc.Elements( "value" ) from c2 in tagsToKeep where ( string ) c.Attribute( "value" ) != c2 select c; where : IEnumerable string > tagsToKeep Why ? Thanks !
Read More...