Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #257 Traverse list backwards

Print each index i and value x from the list items, from the last down to the first.

for(int i = items.Count - 1; i >= 0; i--)
{
    Console.WriteLine($"Index = {i}, Item = {items[i]}");
}

New implementation...
< >
programming-idioms.org