List<object> ary = new List<object>() { 1, 4, 2, 4, 5 };
ary.Reverse();
ary.ForEach(Console.WriteLine);