XML VB.Net

Imports System
Imports System.Xml
Imports System.Xml.XPath
Public Class MainClass
    Public Shared Sub Main()
        Dim xmlTree As XElement = _
            
                
                
            
        
        Dim attList = _
            From att In xmlTree.DescendantsAndSelf.Attributes _
            Select att
        
        Console.WriteLine(xmlTree)
        
        For Each att As XAttribute In attList
            Console.WriteLine(att)
        Next
    End Sub
End Class