XML C#

using System;
using System.IO;
using System.Xml;
public class Sample
{
  public static void Main()
  {
    XmlDocument doc = new XmlDocument();
    doc.LoadXml("" +
                "C#" +
                "");
    XmlElement root = doc.DocumentElement;
    // Create a new element.
    XmlElement elem = doc.CreateElement("price");
    elem.InnerText="19.95";
    Console.WriteLine(elem.OwnerDocument.OuterXml);
    // Add the new element into the document.
    root.AppendChild(elem);
    Console.WriteLine(doc.InnerXml);
  }
}