I have an xml file and I want to reverse some nodes and after that I want to save the result. I used XDocumnt and use revese function on it and it reversed correctly but after that I don not know how to save the file. the original file like the follwing
<root>
<parent>
<child>
<sec>
<p>
<my-formula>
<test id="H1"></test id="H1">
</my-formula>
<my-formula>
<test id="H2"></test id="H2">
</my-formula>
<my-formula>
<test id="H3"></test id="H3">
</my-formula>
</p>
</sec>
<sec>
<p>
<my-formula>
<test id="H4"></test id="H4">
</my-formula>
<my-formula>
<test id="H5"></test id="H5">
</my-formula>
<my-formula>
<test id="H6"></test id="H6">
</my-formula>
</p>
</sec>
</child>
</parent>
</root>
I need to reverse it as the following:
<root>
<parent>
<child>
<sec>
<p>
<my-formula>
<test id="H6"></test id="H6">
</my-formula>
<my-formula>
<test id="H5"></test id="H5">
</my-formula>
<my-formula>
<test id="H4"></test id="H4">
</my-formula>
</p>
</sec>
<sec>
<p>
<my-formula>
<test id="H3"></test id="H3">
</my-formula>
<my-formula>
<test id="H2"></test id="H2">
</my-formula>
<my-formula>
<test id="H1"></test id="H1">
</my-formula>
</p>
</sec>
</child>
</parent>
</root>
After that I want to save it into new file.
can any one help me?