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