XML VB.Net

Imports System
Imports System.Xml
Imports System.Xml.Schema
Class MainClass
    Shared Sub Main()
        Dim xmlTree As XDocument = _
            
            
            
            
                content
                Text content
             
        For Each node As XNode In xmlTree.DescendantNodes
            Console.WriteLine(node.NodeType.ToString())
            If node.NodeType = XmlNodeType.Element Then
                For Each att In DirectCast(node, XElement).Attributes
                    Console.WriteLine(att.NodeType.ToString())
                Next
            End If
        Next
    End Sub
End Class