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