show/hide this revision's text 2 added 538 characters in body

You should use

Have a StringBuilder insteadlook at the wikipedia entry here. 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);
}
show/hide this revision's text 1

You should use a StringBuilder instead.