CJCoding With Joseph

A Generic Interface

Interfaces can be generic. IContainer<T> declares void Add(T item) and T Get(int index). Complete the generic Box<T> class using an internal List<T> so Add stores an item and Get returns the item at an index. Do NOT write a Main method.

After adding "apple" then "banana", printing index 0 then index 1 gives:
apple
banana

Expected Output:

apple
banana
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.