CJCoding With Joseph

Read-Only Computed Property

The Rectangle class stores private width and height fields set by the constructor. Add a read-only property Area (a get with no set) that returns width * height. Do NOT write a Main method.

For new Rectangle(3, 4) the program prints:
12

Expected Output:

12
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.