R
Random
I have a very small XML file I am using to hold data for my app, and want
the fastest, easiest way to grab my data from it. On the surface it seems
the XmlTextReader is the best object for this, but I am having several
issues with it. All of the examples I can find simply iterate through all
the nodes and spit out the data. Well, I need to actually navigate to the
nodes and obtain the values stored there.
I've thought about using the XPathNavigator for this, but the documentation
suggests it is not as efficient as the Reader, and would still require
creating seperate Node objects.
Does anyone have any suggestions?
the fastest, easiest way to grab my data from it. On the surface it seems
the XmlTextReader is the best object for this, but I am having several
issues with it. All of the examples I can find simply iterate through all
the nodes and spit out the data. Well, I need to actually navigate to the
nodes and obtain the values stored there.
I've thought about using the XPathNavigator for this, but the documentation
suggests it is not as efficient as the Reader, and would still require
creating seperate Node objects.
Does anyone have any suggestions?