Hi All,

I can do this with a for loop, but I was just curious if an arraylist can be updated using a for each loop. ie

Code:
      For Each arrItem As String In myArrayList

                arrItem = "My Stuff"

        Next
If I loop through the arraylist again the values remain unchanged. Am I missing something here?

Thanks,

Strick