Mega Code Archive

 
Categories / VB.Net / XML
 

Removes all specified attributes and children of the current node

Imports System Imports System.IO Imports System.Xml public class 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.RemoveAll()     Console.WriteLine(doc.InnerXml)   end sub end class