我需要在下面的结构中创建一个 xml。
<ipaddress> "10.10.10.10" </ipaddress>
<PipeId pid = "4598702C-691E">testvalue</PipeId> --how to display this?
<name> "testname" </name>
但我真的对 xml 中的第二行感到困惑。怎么能显示出来?
我尝试了下面的代码..但不知道如何将第二行放入 xml..
new XElement("StartElement",
new XAttribute("TestAtt", "some & value"),
new XElement("ipaddress", "10.10.10.10"),
new XElement("name", "testname")));