Mega Code Archive

 
Categories / VB.Net / XML
 

Provides support for the for each style iteration over the nodes in the XmlNode

Imports System Imports System.Collections Imports System.Xml public class Sample   public shared sub Main()     Dim doc as XmlDocument = new XmlDocument()     doc.Load("books.xml")     Dim root as XmlNode = doc.DocumentElement     Dim ienum as IEnumerator = root.GetEnumerator()     Dim book as XmlNode     while (ienum.MoveNext())             book = CType(ienum.Current, XmlNode)       Console.WriteLine(book.OuterXml)     end while   end sub end class