Tricky. String to XPathDocument.

Tim Field

Member
Joined
Aug 31, 2005
Messages
20
Hi all,

I have a string containing xml that Id like to pass to an xpathdocument, anyone got any idea how to do this?

Thanks, Tim
 
Code:
Dim s As String = "<your xml string>"
Dim sr As New System.IO.StringReader(s)
Dim x As New System.Xml.XPath.XPathDocument(sr)
 
Back
Top