How to modify an external xml file and save it locally in C#

PenChe

New Member
I'm new to C# and want to manipulate a external xml file. Here is that file:\[code\]<results> <root /> <category id="" title="" /> <category /> <category /></results>\[/code\]I want this to be modified something like:\[code\]<results> <root /> <categories> <category id="" title=""/> <category /> <category /> </categories></results>\[/code\]
 
Back
Top