I have source XMLfiles that come in with multiple root elements and there is nothing I can do about it. What would be the best way to load these fragments into an XDocument
roughly, something like.
var newXML= new XElement("products", from x in Xdocuments.parse(originalFile).descendants("product") select new XElement("product",x.value) );