Mega Code Archive
XElement Parse (String) Loads an XElement from a string that contains XML
Imports System
Imports System.Xml
Imports System.Xml.XPath
Public Class MainClass
Public Shared Sub Main()
Dim xmlTree As XElement =
Console.WriteLine(xmlTree)
End Sub
End Class