tags:

views:

56

answers:

1

Hi,

I have this:

Public stringList As New List(Of String)

I need to read the whole list using For each statement, what is the best way to do so using VB.net syntax?

Thanks,

+3  A: 

It sounds like it would be worth you reading the MSDN documentation for the For Each ... Next statement.

For example:

For Each x As String In stringList
    Console.WriteLine(x)
Next

If that's not what you're after, please give more details in your question.

Jon Skeet