CJCoding With Joseph

Increment with Private Set

The Counter class has a Count property with a public getter and a private setter, starting at 0. Add an Increment() method that increases Count by 1. Because the setter is private, Count can only change through Increment. Do NOT write a Main method.

After calling Increment() three times the program prints:
3

Expected Output:

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