Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CString::MakeReverse
CString                                     Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  void MakeReverse();
 
  Remarks
 
  Reverses the order of the characters in this CString object.
 
  Example
 
  CString s( "abc" );
  s.MakeReverse();
  ASSERT( s == "cba" );
 
 
 
                                     -♦-