<?xml version="1.0" encoding="utf-8"?>
<Settings>
<Code>D:picture\simple</Code>
<Password>picture</Password>
</Settings>
我想更改Code和Password中的值。如何更改值。
答案 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文件
取决于你