This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我现在正在尝试这样的事情
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
`how can i access myAddress[intI+1] from here?
Next intI
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
Console.WriteLine(myAddress(intI))
Next intI