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