bool class : S getter
Description
Gets a string representation of the bool value.
Syntax
boolInstance.S
Arguments
None
Return value
| Class | Description | 
| string | A string representation of the bool value. | 
Sample code
//anyBool is an instance of bool type.
string stringRepresentation = anyBool.S;
Notes
Returns "true" if the value is true. Otherwise, returns "false".
Links for reference
None
			

