string class : TypeName getter
Description
Gets the type name.
Syntax
stringInstance.TypeName
Arguments
None
Return value
Class | Description |
string | The type name. |
Sample code
//anyString is a instance of string type.
string typeName = anyString.TypeName;
Notes
This getter returns "string".
Links for reference
None