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

The Array class includes static method called Sort which can be used to sort the array in ascending order in C#.

Array.Sort(<arry>);

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

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

using System;

using System.Collections.Generic;

using System.Data;

namespace AbundantCode

{

internal class Program

{

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

private static void Main(string[] args)

{

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

Array.Sort(ArrStr);

foreach (var str in ArrStr)

{

Console.WriteLine(str);

}

Console.ReadLine();

}

}

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