This looks a bit nicer ... 


    public string Reverse(string text)
    {
        return new String(Array.Reverse(text.ToCharArray()));
    }