I have that xml document :
<?xml version="1.0" encoding="utf-8" ?>
<reminders>
<reminder>
<Title>Alarm1</Title>
<Description>Desc1</Description>
<Time>03/07/2012 10:11AM</Time>
<snooze>1</snooze>
<repeat>None</repeat>
</reminder>
<reminder>
<Title>Alarm2</Title>
<Description>Desc2</Description>
<Time>03/07/2012 10:11AM</Time>
<snooze>15</snooze>
<repeat>Daily</repeat>
</reminder>
</reminders>
And say i would like to create a full reminder child like :
<reminder>
<Title>NEW-Alarm</Title>
<Description>New-Desc</Description>
<Time>03/07/2012 10:11AM</Time>
<snooze>15</snooze>
<repeat>Daily</repeat>
</reminder>
How can i do that in C# ?
And also i`d like to edit some child like from :
<Title>NEW-Alarm</Title>
to be
<Title>Modified-NEW-Alarm</Title>
I am fresh to XML and i really did my best , actually i am opening like 13 webpages for xml but none of them has what i really need, so i`ll truly appreciate your help.