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
Testig in Framework 4, the code
For Each s As String In myStringList.Reverse //' Do stuff here Next
it wasn't working, the right way to do it is:
myStringList.Reverse() ' it is a method not a function For Each s As String In myStringList //' Do stuff here Next
Look at: MSDN: Reserve