using System; public class Test { public static void Main() { var foo = new int [] {1, 2, 3}; Array.Reverse(foo); } }