如何使用Linq to XML查询XML文档以查找具有任意数量的子节点的具有特定属性的子节点?

最佳答案

您可能要考虑使用XPath。

XmlNodeList list = xmlDoc.SelectNodes("//nodeType[@attrName=attrValue]");

//This selects all elements of type 'nodeType' occuring anywhere in the document
//having 'attrName' attribute of value 'attrValue'

关于.net - 查找任意数量的子节点具有特定属性的子节点?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3336631/

10-12 04:28