Use the Reverse() method to reverse the elements in intArray : Array Reverse « Data Structure « C# / CSharp Tutorial






using System;

class MainClass
{

  public static void Main()
  {
    int[] intArray = {5, 2, 3, 1, 6, 9, 7, 14, 25};
    Array.Sort(intArray);
    
    Array.Reverse(intArray);
    Console.WriteLine("Reversed intArray:");
    for (int i = 0; i < intArray.Length; i++)
    {
      Console.WriteLine("intArray[" + i + "] = " +
        intArray[i]);
    }

  }

}
Reversed intArray:
intArray[0] = 25
intArray[1] = 14
intArray[2] = 9
intArray[3] = 7
intArray[4] = 6
intArray[5] = 5
intArray[6] = 3
intArray[7] = 2
intArray[8] = 1








11.16.Array Reverse
11.16.1.Reverse an array using Array.Reverse
11.16.2.Reverse an array in a range
11.16.3.Reverse an array
11.16.4.Use the Reverse() method to reverse the elements in intArray
11.16.5.Use the Reverse() method to reverse the elements in stringArray
11.16.6.Use the Reverse() method to reverse the elements in charArray
11.16.7.Additional Array Methods