Removes an attribute with the specified local name and namespace URI
Imports System
Imports System.IO
Imports System.Xml
publicclass Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-111111-57-5'>" & _
"<title>C#</title>" & _
"</book>")
Dim root as XmlElement = doc.DocumentElement
root.RemoveAttribute("ISBN", "urn:samples")
Console.WriteLine(doc.InnerXml)
end sub
end class