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 Tangent of an Angle

C# Finding the Path to the Windows System32 Folder

C# Finding the Path to My Documents Folder

C# Getting Current Time

C# How To Find The Average Of 10 Numbers Using A While Loop