Flip an array

I need to be able to read an array and then flip the data in it (bottom to top). How would I go about doing that? Thanks
[122 byte] By [slowcoder] at [2007-11-19 23:50:07]
# 1 Re: Flip an array
Like this?

int[] a = {1,2,3,4,5};
Array.Reverse(a);

- petter
wildfrog at 2007-11-9 11:24:14 >
# 2 Re: Flip an array
Yes, I believe that will work for me. Thanks
slowcoder at 2007-11-9 11:25:14 >
# 3 Re: Flip an array
Yes, I believe that will work for me. ThanksYou're welcome :thumb:

- petter
wildfrog at 2007-11-9 11:26:13 >