CJCoding With Joseph

Derived Boolean Property

The Person class has an auto-property Age. Add a read-only property IsAdult that is true when Age is 18 or greater and false otherwise. Do NOT write a Main method.

For Age = 18 the program prints:
True

For Age = 15 the program prints:
False

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.