How to add and delete data stored in xml file using c# and visual studio 2005?

How to add and delete the data stored in xml file using C# and visual studio 2005?

For example:
for this xml document…

<MenuRoot>
<Books>
<book>
<title> ABC </title>
<author>DEF</author>
<subject>Project Management </subject>
</book>
</Books>
</MenuRoot>

Add the new data to become as follow:

<MenuRoot>
<Books>
<book>
<title> ABC </title>
<author>Peter</author>
<subject>Project Management </subject>
</book>
<book>
<title> XYZ </title>
<author>John</author>
<subject>Project Management </subject>
</book>
</Books>
</MenuRoot>

And I also would like to know how to delete the data stored inside the file. Thanks!!!

http://www.kirupa.com/net/writingXML_pg1.htm

Tutorials really helpful. Careful though the 1 | 2 | 3 page jump buttons are linking to the wrong thing.

Thanks! :slight_smile: