Have a look at the wikipedia entry [here][1]. They implement the String.Reverse extension method. This allows you to write code like this:

    string s = "olleh";
    s.Reverse();

They also use the ToCharArray/Reverse combination that other answers to this question suggest. The source code looks like this:

    public static string Reverse(this string input)
    {
        char[] chars = input.ToCharArray();
        Array.Reverse(chars);
        return new String(chars);
    }



  [1]: http://en.wikipedia.org/wiki/Extension_method