I know I could use a for statement and achieve the same effect, but can I loop backwards through a foreach loop in C#?
for
foreach
Before using foreach for iteration, reverse the list by the reverse method:
reverse
myList.Reverse(); foreach( List listItem in myList) { Console.WriteLine(listItem); }