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