CString::MakeUpper
voidMakeUpper();
Remarks
Converts this CString object to an uppercase string.
Example
The following example demonstrates the use of CString::MakeUpper.
// example for CString::MakeUpper
CString s( "abc" );
s.MakeUpper();
ASSERT( s == "ABC" );
CString Overview | Class Members | Hierarchy Chart
See Also CString::MakeLower