I'm trying to select the second child node off the root and all it's children from XML that looks similar to this:
<root>
<SET>
<element>
<element>
</SET>
<SET>
<element>
<element>
</SET>
<root>
I'm after all the tags in the second node, any help would be greatly appreciated!
I'm using C#. I tried the XPath /SET[1] however that didn't see to help!
Many thanks!
C