โ Back to Interfaces
Question 641
Interface With an Indexer
Interface With an Indexer
TheIWordBankinterface declares a read-only indexerthis[int index]and aCountproperty. Write aWordBankclass that is constructed with astring[]and exposes it through that indexer and count. The tester reads the count and a couple of words by index. Do NOT write aMainmethod. For the words red, green, blue the program prints: 3 red blue
Expected Output:
3 red blue
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.