My XML:
<root>
<child>
<childOfChild>
<anotherLostChild>
<currentSelectedNode>
SOME TEXT
</currentSelectedNode>
</anotherLostChild>
</childOfChild>
</child>
</root>
I selected the node currentSelectedNode using:
xpath.SelectSingleNode("//currentSelectedNode")
But How can I back to select the first chilfOfChild parent node (considering that the context is currentSelectedNode?
xpath.SelectSingleNode("//currentSelectedNode")...???