我有这个:
Public stringList As New List(Of String)
我需要使用每个语句阅读整个列表,使用VB.net语法的最佳方法是什么?
谢谢,
答案 0 :(得分:3)
听起来值得你阅读the MSDN documentation for the For Each ... Next statement。
例如:
For Each x As String In stringList
Console.WriteLine(x)
Next
如果那不是你想要的,请在你的问题中提供更多细节。