I have read in some blog some time ago (sorry for being vague) that i could use a linq like the following
var list = from c in xml
select new
{
foreach(XElement el in c.Elements())
{
}
}
Does anyone know is it possible or is it just my imagination??
Thanks.