CJCoding With Joseph

Implement a Generic Interface

The generic interface IContainer<T> declares Add(T item), Get(int index), and a Count property. Write a Box<T> class that implements it, backed by a List<T>. The tester adds items, then prints the count and some retrieved items. Do NOT write a Main method.

After adding "a" and "b" to a Box<string> the program prints:
2
a
b

Expected Output:

2
a
b
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.