How to Sort Array Elements in Descending Order in C#?

The Array class includes static method called Sort which can be used to sort the array in ascending order. After using the Sort method, one can use the Reverse method to sort the array back to descending order.

How to Sort Array Elements in Descending Order in C#?

Below is a sample code snippet demonstrating sorting of array elements in Descending order in C#.

using System;

using System.Collections.Generic;

using System.Data;

namespace AbundantCode

{

internal class Program

{

// How to Sort Array Elements in Descending Order in C# ?

private static void Main(string[] args)

{

string[] ArrStr = new string[] { "Abundant Code", "Test Code", "Abundant Code1" };

Array.Sort(ArrStr);

Array.Reverse(ArrStr);

foreach (var str in ArrStr)

{

Console.WriteLine(str);

}

Console.ReadLine();

}

}

}
How to Sort Array Elements in Descending Order in C#?