Sort Array in C# in Ascending Order



Firstly, set the unsorted array.

int[] list = {98, 23, 97, 36, 77};

Sort the array using the Sort() method.

Array.Sort(list);

You can try to run the following code to to sort an array in ascending order.

Example

 Live Demo

using System;
namespace Demo {
   public class MyApplication {
      public static void Main(string[] args) {
         int[] list = {98, 23, 97, 36, 77};
         Console.WriteLine("Original Unsorted List");
         foreach (int i in list) {
            Console.Write(i + " ");
         }
         Array.Sort(list);
         Console.WriteLine("
Sorted List");          for(int i=0; i<list.Length; i++) {             Console.Write(list[i] + " ");          }       }    } }

Output

Original Unsorted List
98 23 97 36 77
Sorted List
23 36 77 97 98
Updated on: 2020-06-23T11:43:34+05:30

10K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements