Skip to content

Instantly share code, notes, and snippets.

@jianminchen
Created June 26, 2016 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jianminchen/ea5f706117ef8316aef66e057e0c86ee to your computer and use it in GitHub Desktop.
Save jianminchen/ea5f706117ef8316aef66e057e0c86ee to your computer and use it in GitHub Desktop.
Reverse a string in C#
/*
* http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string
*/
public static string Reverse(string s)
{
char[] charArray = s.ToCharArray();
Array.Reverse(charArray);
return new string(charArray);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment