here's my approach:

    private string Reverse(string input)
    {
        Stack<char> resultStack = new Stack<char>();
        foreach (char c in input)
        {
            resultStack.Push(c);
        }
 
        StringBuilder sb = new StringBuilder();
        while (resultStack.Count > 0)
        {
            sb.Append(resultStack.Pop());
        }
        return sb.ToString();
    }


**Edit:**
Ok, I ran the various approaches to the profiler, using the string "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12" and 10.000 Reversals, counting "Time With Children (ms)". And yes, i know that there is no Reverse4, because it was a duplicate. Ran the test 3 times, results did not fluctuate too much for me. So yes, my approach sucks by a factor of 10, so i'll change my function in my code now :-)

[Reverse1: 157,508ms][1]

[Reverse2: 63,133ms][2]

[Reverse3: 10,462ms][3]

[Reverse5: 35,975ms][4]

[Reverse6: 3,710ms][5]

[Reverse7: 245,391ms][6]

[Linq approach: 64,325ms (Changed Target Framework from 2.0 to 3.5 for this)][7]


  [1]: http://stackoverflow.com/questions/228038/#228053
  [2]: http://stackoverflow.com/questions/228038/#228056
  [3]: http://stackoverflow.com/questions/228038/#228060
  [4]: http://stackoverflow.com/questions/228038/#228068
  [5]: http://stackoverflow.com/questions/228038/#228084
  [6]: http://stackoverflow.com/questions/228038/#228106
  [7]: http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-20#228127