Author -  Sai gowtham

How to sort an array of numbers in C#

In this example, you will learn about how to sort an array of numbers both ascending and descending order in C# by using a built-in sort() method.

Sorting array of numbers in ascending order

By default, the sort() method sorts the array in ascending order.

using System;

public class SortProgram
{
    public static void Main()
    {
        // intializing new array
        int[] myArr= new int[5] {1,5,3,8,21};

         // sorting array in ascending order
        Array.Sort(myArr);

        foreach (int val in myArr)
            { // printing the each sorted value
              Console.WriteLine(val);
            }
    }
}

Output:

1
3
5
8
21

Sorting array of numbers in descending order

For descending order, we need to use the Array.Reverse() method.

using System;

public class SortProgram
{
    public static void Main()
    {
        // intializing new array
        int[] myArr= new int[5] {1,5,3,8,21};


        Array.Sort(myArr);
        Array.Reverse(myArr); // sorting in descending order

        foreach (int val in myArr)
            { // printing the each sorted value
              Console.WriteLine(val);
            }
    }
}

Output:

21
8
5
3
1

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY