Imports System
Imports System.Xml
Imports System.Xml.Schema
Imports System.Linq
Imports System.Collections
Imports System.Collections.Generic
Class MainClass
Shared Sub Main()
Dim xmlTree As XElement = _
content
Dim grandChild As IEnumerable(Of XElement) = xmlTree...
For Each el In grandChild.Ancestors()
Console.WriteLine(el.Name)
Next
End Sub
End Class