I have a large (2+ GB) XML file that the contents look like:
< rootNode>
<content>
& lt;node& gt;test& lt;/node& gt;
</content>
< /rootNode>
The node contains the entire xml structure I need, but is an encoded xml string.
When looping through this with an XmlReader, the "& lt;node& gt;test& lt;/node& gt;" comes back as a string and not the individual xml elements that I want to iterate.
Is there an efficient way of decoding the node? So I only have to iterate through the file once?
Thanks, brian