Function CSPWString::operator =()
Description:
The assignment operators assign textual values to a newly created string object, performing any conversion, if necessary.
 |
Prototype:
CSPWString& operator =(const CSPWString& wstrString);
Arguments:
- const CSPWString& wstrString [IN]
The string value to assign.
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; CSPWString wstrNumber; CSPWString wstrCopy;
wstrText = L"Hello"; wstrNumber = 123; wstrCopy = wstrText;
|
|