I don\'t believe this is possible by conventional methods, but something like this verbose code:
For Each s As String In myStringList Step -1 //\' Do stu
You'd have to do something like:
For i as integer = myStringList.Count-1 to 0 step -1 dim s as string = myStringList.Item(i) ' Do your stuff with s Next i
But as far as I know, you can't do a "For...Each" backwards, though that would be nice in a few instances.