我是 C# 新手,想操作外部 xml 文件。这是那个文件:
<results>
<root />
<category id="" title="" />
<category />
<category />
</results>
我希望对此进行修改,例如:
<results>
<root />
<categories>
<category id="" title=""/>
<category />
<category />
</categories>
</results>