DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
From XmlDocument To XPath Document
It's not obvious how you might turn your standard XmlDocument into an XPathDocument as there is no direct method to do so. The best way is to make use of a reader for the conversion:
XPathDocument xpathDoc = new XPathDocument (new XmlNodeReader(doc));




