XML C# Tutorial

using System;
using System.IO;
using System.Xml;
public class Sample
{
  public static void Main(){
    XmlDocument doc = new XmlDocument();
    doc.LoadXml("" +
                "AAA" +
                "");      
    XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;
    attrColl.Remove(attrColl["genre"]);
    Console.WriteLine("Display the modified XML...\r\n");
    Console.WriteLine(doc.OuterXml);  
  }
}