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;
        if (root.HasAttribute("genre"))
        {
            XmlAttribute attr = root.GetAttributeNode("genre");
            Console.WriteLine(attr.Value);
        }
    }
}