using System; public class Example { public static void Main() { int[] array = { 2, 4, 6, 8 }; Array.Reverse(array); Console.WriteLine(String.Join(',', array)); } } /* Output: 8,6,4,2 */