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!!!