loadXML vs. CreateElement

admin

Administrator
Staff member
Hi,Anybody has an opinion about the difference between doing:dim xd as New MSXML.DOMDocumentcall xd.loadXML("<root/>")and:dim xd as New MSXML.DOMDocumentdim xe as MSXML.IXMLDOMElementset xe=xd.createElement("root")set xd.documentElement=xe??I'm trying to figure out which method is more performant.Thank you,--itai
 
Back
Top