using System;
using System.Xml;
class XmlWriterSamp
{
static void Main(string[] args)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(" Some Value ");
XmlElement root = xmlDoc.DocumentElement;
string str = root.ToString();
xmlDoc.RemoveAll();
xmlDoc.Save(Console.Out);
}
}