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 = XElement.Parse("<Root> <Child> </Child> </Root>"); Console.WriteLine(xmlTree); } }