โ Back to Encapsulation
Question 494
Roster Behind a Private List
Roster Behind a Private List
TheTeamclass hides a privateList<string>of member names. Add a methodAdd(string name)that appends a name, a read-only propertyCountthat returns how many members there are, and a methodRoster()that returns the names joined by ", " (a comma followed by a space). The list itself is never exposed. The tester printsCount, then the roster. Do NOT write aMainmethod. After adding "Ann" and "Bob" the program prints: 2 Ann, Bob
Expected Output:
2 Ann, Bob
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.