bool class : B getter
Description
Gets a new instance with the same value as the calling instance.
Syntax
boolInstance.B
Arguments
None
Return value
Class | Description |
bool | A new instance with the same value as the calling instance. |
Sample code
//anyBool is an instance of bool type.
bool newInstance = anyBool.B;
Notes
None
Links for reference
None