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");
    //Create an attribute.
    XmlAttribute attr = doc.CreateAttribute("publisher");
    attr.Value = "WorldWide Publishing";
    //Add the new node to the document. 
    doc.DocumentElement.SetAttributeNode(attr);
    doc.Save(Console.Out);
  }
}