CJCoding With Joseph

Interface With an Indexer

The IWordBank interface declares a read-only indexer this[int index] and a Count property. Write a WordBank class that is constructed with a string[] and exposes it through that indexer and count. The tester reads the count and a couple of words by index. Do NOT write a Main method.

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.