int class : B getter
Description
Get an instance of bool type with converted value from int value.
Syntax
intInstance.B
Arguments
None
Return value
Class | Description |
bool | An instance of bool type with converted value from int value. |
Sample code
//anyInt is an instance of int type.
bool ConversionValue = anyInt.B;
Notes
If the int value is not 0, returns true. If it is 0, returns false.
Links for reference
None