C# 根据XML的节点属性遍历该节点

<a id='1'>
<b id='2'>
<c id=‘3’ other='fuuuuuuuuuuuu'></c>
<c id='6'></c>
</b>
<b id='10'>
<c id=‘12’></c>
<c id='13'></c>
</b>
</a>
我想问,根据属性id去查这个节点的其他属性,其他属性名不知道,数量不知道。只需打印出其他属性的名还有值

string xml = @"<a id='1'><b id='2'><c id='3' other='fuuuuuuuuuuuu'></c> <c id='6'></c> </b> <b id='10'> <c id='12'></c> <c id='13'></c> </b></a>";
XmlDocument dom = new XmlDocument();
dom.LoadXml(xml);
var node = dom.SelectSingleNode("//c[@id='3']");
if(node!=null)
{
foreach(XmlAttribute att in node.Attributes)
{
MessageBox.Show(att.Name + " :" + att.Value);
}
}
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答