1

大家好,我有一个这样的 xml

<root>
<page key"page1.aspx" value="page1" />
<page key"page2.aspx" value="cookepage" >
</root>

现在我想要得到的是我想要键和值属性同时我希望它们添加到 NameValueCollection

像这样

NVC.Add(键,值)

直到现在我已经做到了

 For Each Item as XmlNode In xdoc.SelectNodes("//*/@*")
' But this returns me only key or value attribute at a time and i can not add it to NVC
 Next

寻找一个好的建议

4

1 回答 1

1

选择page节点。

然后对于每个节点,循环遍历属性。

if attrib.Name='key' then ... elseif attrib.Name='value' then ... end if.

请参阅:https ://stackoverflow.com/a/933698/1043824

于 2013-11-04T07:52:44.137 回答