CJCoding With Joseph

Toggle a Private Boolean

Create a class LightSwitch with a private bool isOn that starts false. Add a Toggle() method that flips it (false becomes true, true becomes false) and an IsOn() method that returns the current state. Do not write a Main method.

After one Toggle() the program prints:
True

Expected Output:

True
Topics:
Encapsulation
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.