C# program to sort the given numbers in an array
Program.cs
Console.WriteLine("———————————————————————————————————————————");
Console.WriteLine("Program to sort the given numbers in a array");
Console.WriteLine("———————————————————————————————————————————");
int[] arr = new int[] { 23, 34, 5, 4, 1, 99, 58, 14 };  
Array.Sort(arr);
foreach (var i in arr)
{
    Console.WriteLine(i);
}
Console.WriteLine("———————————————————————————————————————————");
Output
kodingwindow@kw:~/csharp$ dotnet run
———————————————————————————————————————————
Program to sort the given numbers in a array
———————————————————————————————————————————
1
4
5
14
23
34
58
99
———————————————————————————————————————————
kodingwindow@kw:~/csharp$ 
Advertisement