Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Adding a root to an XDocument

I have a string that contains an XML, lets say like this:

<Novels> 
 <Book>
  <Title>Cat in hat</Title>
  <Price>12</Price>
 </Book>
</Novels>

I want to make an XDocument that looks like this:

<Booklist>
 <Novels> 
  <Book>
   <Title>Cat in hat</Title>
   <Price>12</Price>
  </Book>
 </Novels>
</Booklist>

I can load the xml string into an XDocument using XDocument doc = XDocument.Parse(xmlString);

How would I load the document under a new root. I can think of something like creating a new XDocument with the root I want and then using a for loop to add the nodes as children, but is there an easier way of doing this?

like image 801
NMunro Avatar asked Jul 25 '13 15:07

NMunro


1 Answers

XDocument yourResult = new XDocument(new XElement("Booklist", doc.Root));
like image 61
It'sNotALie. Avatar answered Sep 24 '22 11:09

It'sNotALie.