How to reverse a String using C#?


To reverse a string, use the Array.Reverse() method.

Set the string you want to reverse −

string str = "Amit";

In the above method, we have converted the string into character array −

char[] ch = str.ToCharArray();

Then the Reverse() method is used.

Array.Reverse(ch);

Example

using System;
namespace Demo {
   class Program {
      static void Main(string[] args) {

         string str = "Amit";
         char[] ch = str.ToCharArray();

         Array.Reverse(ch);

         foreach(var items in ch) {
            Console.WriteLine(items);
         }

         Console.ReadLine();
      }
   }
}

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 21-Jun-2020

388 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements