XmlDocument and XPathDocument
I'm working with the XmlDocument and XPathDocument classes to execute XPath queries and to do XSLT transformations. I have found a gain of 15% using XPathDocument to executeXPath queries and a gain of 25% with XSLT. I used a 1Mb XML file to do these tests.
Jerry found :
In one of my tests, an HTML page that took 30 seconds to render with an XMLDocument took 3 seconds with an XPathDocument.
!!
Are there any other benchmarks on the web ?