Does an XPathDocument load the whole xml document?
Posted
by Wires
on Stack Overflow
See other posts from Stack Overflow
or by Wires
Published on 2010-04-09T18:04:26Z
Indexed on
2010/04/09
18:13 UTC
Read the original article
Hit count: 285
If I do
XPathDocument doc = new XPathDocument("filename.xml");
Does that load the entire document into memory? I'm writing a mobile phone app and the document might store lots of data that doesn't ever need to all be loaded at the same time. Mobile phones don't usually have too much ram!
© Stack Overflow or respective owner