โ Back to Encapsulation
Question 469
Encapsulate a List
Encapsulate a List
Create a classTodoListthat keeps aprivate List<string>of items. Callers cannot touch the list directly; they useAdd(string item)to add one, and a read-onlyCountproperty that reports how many items there are. Do not write aMainmethod. 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.