How to read a list of strings
1 answer
It sounds like you should read the MSDN documentation for the "For each ... Next" instruction .
For example:
For Each x As String In stringList
Console.WriteLine(x)
Next
If this is not what you want, please include more details in your question.
+3
source to share