CJCoding With Joseph

Implement a Property With a Private Setter

The IBankAccount interface requires a read-only Balance property and a Deposit method. The Account class exposes Balance with a private setter. Complete Deposit so it adds the amount to Balance. The tester makes two deposits and prints the balance. Do NOT write a Main method.

After depositing 100 then 50, the program prints:
150

Expected Output:

150
Topics:
Interfaces
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.