XML LINQ C#

using System;
using System.Linq;
using System.Xml.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass{
   public static void Main(){
        XElement xmlTree = new XElement("Root",
            new XAttribute("Att1", "AttributeContent"),
            new XElement("Child",
                new XText("Some text"),
                new XElement("GrandChild", "element content")
            )
        );
        IEnumerable das = xmlTree.DescendantsAndSelf("Child");
        foreach (XElement el in das)
            Console.WriteLine(el.Name);
    }
}