Hi All i want add the new node as parent node of the old nodes in XML using C#.for example node have the following XMl file
<bookstore>
<books>
<author>
</author>
</books>
</bookstore>
like that now i want add the new like below
<bookstore>
<newnode>
<books>
<author>
</author>
</books>
</newnode>
</bookstore>
Thanks in Advance Sekar