Syntax
void MakeReverse();
Remarks
Reverses the order of the characters in this CString object.
Example
CString s( "abc" );
s.MakeReverse();
ASSERT( s == "cba" );