Two points:
1. After I posted this idea, I discovered the images stored by ID name in the database folder, so I have a work around.
2. If you are trying to parse an XML document entirely into memory AND that document is large, the you are using the WRONG parsing approach. You should use a SAX-style parser (i.e. System.Xml.XmlReader) approach so that you do not load the entire file into memory. This allows you process the file on the fly, very quickly! |