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






using System;

class MainClass
{

  public static void Main()
  {
    char[] charArray = {'w', 'e', 'l', 'c', 'o', 'm', 'e'};
    Array.Sort(charArray);  // sort the elements      

    Array.Reverse(charArray);
    Console.WriteLine("Reversed charArray:");
    for (int i = 0; i < charArray.Length; i++)
    {
      Console.WriteLine("charArray[" + i + "] = " + charArray[i]);
    }
  }

}
Reversed charArray:
charArray[0] = w
charArray[1] = o
charArray[2] = m
charArray[3] = l
charArray[4] = e
charArray[5] = e
charArray[6] = c








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