This topic has not yet been rated - Rate this topic

CStringT::MakeUpper 

Converts the CStringT object to an uppercase string.


CStringT& MakeUpper();

The resulting uppercase string.

Returns a copy of the string but in all uppercase characters.

//typedef CStringT< TCHAR, StrTraitATL< TCHAR > > CAtlString;

CAtlString s( "abc" );

_ASSERT( s.MakeUpper() == "ABC" );
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.