Hello,
I have created the xml Document through the C# application using XmlTextWriter Class,
Which is as bellow,
<?xml version="1.0" encoding="utf-8" ?>
- <!-- Author HarshaL K. Dhote -->
- <Project Location="C:\WorkSpace">
- <Cars>
C:\WorkSpace\Cars
<HONDA>C:\WorkSpace\Cars\HONDA</HONDA>
</Cars>
<Bikes>C:\WorkSpace\Bikes</Bikes>
<Trucks>C:\WorkSpace\Trucks</Trucks>
<busses>C:\WorkSpace\busses</busses>
</Project>
Suppose Now I have to append child to the node Hond, how should I do this programatically,in C#