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