CJCoding With Joseph

Encapsulate a List

Create a class TodoList that keeps a private List<string> of items. Callers cannot touch the list directly; they use Add(string item) to add one, and a read-only Count property that reports how many items there are. Do not write a Main method.

After adding 3 items 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.