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