/// <summary>
 /// Removes the attribute with the specified namespace and name.
 /// </summary>
 /// <param name="NamespaceURI">Namespace of the attribute.</param>
 /// <param name="LocalName">Name of the attribute.</param>
 public void RemoveAttributeNS(string NamespaceURI, string LocalName)
 {
     element.removeAttributeNS(NamespaceURI, LocalName);
 }