CJCoding With Joseph

Property With a Private Setter

Create a class Counter with a Count property that has a public get but a private set, so outside code can read it but not change it directly. Add an Increment() method that raises Count by 1. 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.