Function CSPWString::operator +=()
Description:
The "+=" operators append textual values to a string object, performing any conversion, if necessary.
 |
Prototype:
CSPWString& operator +=(const CSPWString& wstrString);
Arguments:
- const CSPWString& wstrString [IN]
The string to append.
Return value:
Returns a reference to the object itself.
Remarks:
For more information about the data type conversions available, see the remarks section of class CSPWString
Examples:
CSPWString wstrText( L"My score: " ); CSPWString wstrNumber( 123 );
wstrText += wstrNumber;
|
|