using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { List Items = new List() { "One", "Two", "Three", "Four" }; foreach ( string item in Enumerable.Reverse(Items) ) { Console.WriteLine(item); } } }