vote up 0 vote down star

How do I get the position of the XML element in this loop?

For Each objNode In objDoc.SelectNodes("//books/book")

 ???

Next

What I want in output would be something like

1 2 3 4 ....

flag

1 Answer

vote up 4 vote down check

You probably want something like:

objBooks = objDoc.SelectSingleNode("//books")

Dim pos As Integer = 1
For Each book As XmlNode In objBooks.ChildNodes

   Console.Write(pos & " ")

   pos = pos + 1
Next
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.