I need to move backwards through an array, so I have code like this:
for (int i = myArray.Length - 1; i >= 0; i--) { // Do something myArray[i] =
// this is how I always do it for (i = n; --i >= 0;){ ... }