using System;
using System.Xml;
using System.Xml.Linq;
public class Program
{
public static void Main()
var newXml = new XDocument();
newXml.Add(new XElement("test"));
Console.WriteLine(newXml);
}