Reverse a string in C#


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

We have set a method and passed the string value as “Henry” −

public static string ReverseFunc(string str) {
   char[] ch = str.ToCharArray();
   Array.Reverse(ch);
   return new string(ch);
}

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);

Updated on: 21-Jun-2020

387 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements