I’ve got some procedural code from a client that i’m trying to clean up, and have questions that i’d be mighty happy to get some input on:
Does creating a new instance of an Object that uses an identical name to an older instance, delete the previous instance? Or should the original instance be deleted first?
The code uses a ridiculous amount of XML vars. Isn’t it less memory intensive to parse the XML and save the properties to an Object, and then delete the XML Object, rather than keep the XML Object around and reference it’s child nodes directly?
Is it better form to break up a huge XML file (>600lines/3200vars) into smaller chunks?
Thanks veddy much, in advance
=Dave