Mega Code Archive

 
Categories / VB.Net / XML LINQ
 

XContainer RemoveNodes Removes the child nodes from this document or element

Imports System Imports System.Xml Imports System.Xml.XPath Public Class MainClass     Public Shared Sub Main()         Dim xmltree As XElement = _              <Root>                 <Child1>1</Child1>                 <Child2>2</Child2>                 <!--a comment-->                 <Child3>3</Child3>                 <Child4>4</Child4>mixed content<Child5>5</Child5>             </Root>                  xmltree.RemoveNodes()         Console.WriteLine(xmltree)     End Sub End Class