Function CSPString::operator +=()
Description:
The "+=" operators append textual values to a string object, performing any conversion, if necessary.
 |
Prototype:
CSPString& operator +=(const CSPString& strString);
Arguments:
- const CSPString& strString [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 CSPString
Examples:
CSPString strText( "My score: " ); CSPString strNumber( 123 );
strText += strNumber;
|
|