Mega Code Archive
Removes the XmlAttribute specified by the local name and namespace URI
Imports System
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("" & _
"C#" & _
"")
Dim root as XmlElement = doc.DocumentElement
root.RemoveAttributeNode("ISBN", "urn:samples")
Console.WriteLine(doc.InnerXml)
end sub
end class