Inverser pour l'unité de boucle
for (int i = myArray.Length - 1; i >= 0; i--)
{
// Do something ...
}
Nice Nightingale
for (int i = myArray.Length - 1; i >= 0; i--)
{
// Do something ...
}