Function CSPString::operator +()
Description:
Adds the contents of two strings, performing any conversion, if necessary.
 |
Prototype:
CSPString operator +(const CSPString& strString) const;
Arguments:
- const CSPString& strString [IN]
The string to add.
Return value:
Returns a new string containing the contents of two strings.
Remarks:
For more information about the data type conversions available, see the remarks section of class CSPString
Examples:
CSPString strText = "My score is "; CSPString strScore = strText + "123";
|
|