static public static 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.
|
2 | edited body | ||
|
|
||||
|
1 |
|
||
I think the above works not tested, although the stringbuilder class may also have a reverse function I haven't checked that though. |
||||
