我的XML:XPath:如何選擇節點的第一個給定的父節點?
<root>
<child>
<childOfChild>
<anotherLostChild>
<currentSelectedNode>
SOME TEXT
</currentSelectedNode>
</anotherLostChild>
</childOfChild>
</child>
</root>
我選擇使用節點currentSelectedNode:
xpath.SelectSingleNode("//currentSelectedNode")
但我怎麼能恢復到選擇第一chilfOfChild父節點(考慮到上下文currentSelectedNode?
xpath.SelectSingleNode("//currentSelectedNode")...???
Ancestor()方法不存在。 – WillB3 2016-03-18 18:20:59