0

我的输入是一个字符串,如:<Identification LastName="Bornery" Name="John" Age="23"/>我想将其转换为 Xml,然后将其更改为:<Identification LastName="Bornery" Name="John" Age="40"/>

4

1 回答 1

1

这应该可以,但还有很多其他方式。最适合您的将需要更多信息。

var xd = XDocument.Parse(@"<Identification LastName=""Bornery"" Name=""John"" Age=""23""/>");
xd.Element("Identification").Attribute("Age").Value = "40";
string result = xd.ToString();
于 2012-09-11T12:24:56.617 回答