XmlNodeList-使用GetElementByTagName,如何将不同节点添加到同一列表?

时间:2018-08-09 11:09:17

标签: xml xmldocument xmlnodelist

我似乎无法将两个Node类型添加到同一XmlNodeList:-

例如,我希望能够将所有“帐户”和所有“销售” element.innertext添加到一个node1 XmlNodeList中,而不必像这样创建两个列表?

XmlNodeList node1 = doc.GetElementsByTagName("Accounts"); XmlNodeList node2 = doc.GetElementsByTagName("Sales");

如果我执行以下操作,那么我只会在列表中看到“销售”,而不是“帐户”?

XmlNodeList node1 = doc.GetElementsByTagName("Accounts"); XmlNodeList node1 = doc.GetElementsByTagName("Sales");

当我执行以下foreach命令时,我会建立一个:-

foreach (XmlNode ElementFound in node1 ) {}

我敢肯定,我做错了什么?

谢谢 克雷格

0 个答案:

没有答案