如何在c#中更改xml元素值?

时间:2015-02-20 13:41:13

标签: c# asp.net xml

<?xml version="1.0" encoding="utf-8"?>
<Settings>
<Code>D:picture\simple</Code>
<Password>picture</Password>
</Settings>

我想更改Code和Password中的值。如何更改值。

1 个答案:

答案 0 :(得分:2)

XElement root = XElement.Load("path/to/xml/somewhere");

root.Element("Code").Value= "newcode";
root.Element("Password").Value ="Penis *gnhihihi*";
//only in Linqpad
root.Dump();

你有它。这是改变它的一种方法。 由你如何将它保存回xml文件

取决于你