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