M
mychevworld
I must be missing something, but I'm not seeing it.
This returns a count of 1
XmlNodeList oList = oXml.GetElementsByTagName("Scout");
This returns a count of 0
XmlNodeList oList = oXml.GetElementsByTagName("Scout/Employees");
<Scout>
<Employees>
</Employees>
</Scout>
What am I doing wrong?
This returns a count of 1
XmlNodeList oList = oXml.GetElementsByTagName("Scout");
This returns a count of 0
XmlNodeList oList = oXml.GetElementsByTagName("Scout/Employees");
<Scout>
<Employees>
</Employees>
</Scout>
What am I doing wrong?