XML C#

using System;
using System.ComponentModel;
using System.IO;
using System.Text;
using System.Xml;
namespace System.Collections.Specialized
{
  /// 
  /// Represents a collection of useful extenions methods.
  /// 

  public static class NameValueCollectionExtensons
  {
    /// 
    /// Creates a XML encoding of the collection object and its current state with
    /// a given root name.
    /// 

    public static string ToXml(this NameValueCollection collection, string name)
    {
      return ToXml(collection, name, null);
    }
    /// 
    /// Creates a XML encoding of the collection object and its current state with
    /// a given root name and attributes.
    /// 

    public static string ToXml(this NameValueCollection collection, string name, object attributes)
    {
      if(string.IsNullOrEmpty(name))
        throw new ArgumentNullException("name");
      StringWriter sw = new StringWriter();
      XmlTextWriter w = new XmlTextWriter(sw);
      w.Formatting = Formatting.Indented;
      w.WriteStartElement(name);
      PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(attributes);
      foreach(PropertyDescriptor pd in properties)
        w.WriteAttributeString(pd.Name, pd.GetValue(attributes).ToString());
      foreach(string key in collection.AllKeys)
        w.WriteElementString(key, collection[key]);
      w.WriteEndElement();
      return sw.ToString();
    }
  }
}