CJCoding With Joseph

Pass Color To Base

The base class Widget has a constructor that takes a color and prints it. Button inherits from Widget. Complete the Button constructor so it forwards its color parameter to the base constructor using : base(...). Do NOT write a Main method.

When the tester creates a Button with color red, the program prints:
Color: red

Expected Output:

Color: red
Topics:
Inheritance
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.