using System;
using System.Xml;
using System.Xml.Linq;
class Program
{
static void Main()
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + @"\Customers.xml");
/* another function of XDocument.Parse() is formatting XML code which gived as string: */
Console.WriteLine(XDocument.Parse(xmlDoc.InnerXml));
}
}