Function CSPWString::CSPWString()
Description:
The CSPWString constructors assign textual values to a newly created string object, performing any conversion, if necessary.
 |
Prototype:
CSPWString(const CSPWString& wstrString);
Arguments:
- const CSPWString& wstrString [IN]
The initial string value.
Return value:
No value is returned.
Remarks:
For more information about the data type conversions available, see the remarks section of class CSPWString
Examples:
CSPWString wstrText( L"Hello!" ); CSPWString wstrNumber( 123 );
|
|