static public string Reverse( string s )
    {
        char[] charArray = s.ToCharArray();
        Array.Reverse( charArray );
        return new string( charArray );
    }

I think the above works not tested, although the stringbuilder class may also have a reverse function I haven't checked that though.