C# Reverse Array

We use the Array.Reverse() function to reverse an array, or in other words to sort the elements in reverse order.

In the example code below, first the correct order of the array and then the reverse order are printed on the screen.

namespace ConsoleApplicationTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string [] array = { "Sugar", "Salt", "Cake", "Water", "Soda" };

            foreach (string value in array)
            {
                Console.WriteLine(value);
            }

            Console.WriteLine("\nWrite to Screen in Reverse\n");
            
            Array.Reverse(array);

            foreach (string value in array)
            {
                Console.WriteLine(value);
            }

            Console.WriteLine();

            Console.ReadLine();
        }
    }
}

Note : \n allows one line to go down.



You May Interest

C# Finding the Path to the Windows Folder

C# Finding the Computer Name

C# Non-Restart Check If Application is Open

Finding Character Count of String in C#

Finding the Index Order of a Character in a String in C#