CJCoding With Joseph

Implement Several Interface Methods

The ILight interface has a IsOn property and TurnOn/TurnOff methods. The Lamp class already has IsOn. Complete TurnOn and TurnOff so they set IsOn to true and false. The tester turns the lamp on, prints IsOn, turns it off, and prints again. Do NOT write a Main method.

Remember that Console.WriteLine prints a bool as True or False. The program prints:
True
False

Expected Output:

True
False
Topics:
Interfaces
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.