Function CSPString::operator const char*()
Description:
Retrieves the constant C-style string pointer of this string object.
 |
Prototype:
operator const char*() const;
Arguments:
No arguments (void).
Return value:
Returns the C-style string pointer.
Examples:
CSPString strText = "Hello"; const char* pStr = strText;
See also:
member function GetPtr()
|
|