0

以下の構造のxmlを作成する必要があります。

<ipaddress> "10.10.10.10" </ipaddress> 
<PipeId pid = "4598702C-691E">testvalue</PipeId> --how to display this?
<name> "testname" </name> 

しかし、xml の 2 行目については本当に混乱しています。どのように表示できますか?

以下のコードを試しました..しかし、2行目をxmlに取得する方法がわかりません..

new XElement("StartElement",
new XAttribute("TestAtt", "some & value"),
new XElement("ipaddress", "10.10.10.10"),
new XElement("name", "testname")));
4

1 に答える 1

2

その要素を構築しようとしているだけの場合は、次のようにします。

new XElement("PipeId",                       // Name of the element
    new XAttribute("pid", "4598702C-691E"),  // Attribute of the element
    "testvalue")                             // Text content of the element
于 2013-03-21T15:33:48.880 に答える