我在用
XElement root = XElement.Load(filepath);
加载 XML 文件,然后找到我需要的东西。
IEnumerable<XElement> commands = from command in MyCommands
where (string) command.Attribute("Number") == Number
select command;
foreach (XElement command in commands)
{
command.SetAttributeValue("Group", GroupFound);
}
完成更改后,我使用以下代码保存文件。
root.Save(filepath);
保存文件时,我的 XML 文件中的所有行都会受到影响。Visual Studio 默认对齐所有行,但我需要保存原始文件格式。
我不能更改文档的任何部分,除了 Group 属性值。
command.SetAttributeValue("Group") attributes.