Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
5,449 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have an xml stored in a string (its source is not a file)
How can I load it into a new XDocument? Possible? Just need to parse it and get some fields out of it...
Thanks.
Try Dim doc As XDocument = XDocument.Parse( mystring )
.