Function CSPWString::operator +()
Description:
Adds the contents of two strings, performing any conversion, if necessary.
 |
Prototype:
CSPWString operator +(const CSPWString& wstrString) const;
Arguments:
- const CSPWString& wstrString [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 CSPWString
Examples:
CSPWString wstrText = L"My score is "; CSPWString wstrScore = wstrText + L"123";
|
|