CJCoding With Joseph

Generic Container Class

A generic class is a single class definition that adapts to whatever type you plug in. Write a Container<T> class that stores one item of type T (passed to its constructor) and exposes a Get() method returning that item. Do NOT write a Main method.

The tester makes a Container<string> holding box and a Container<int> holding 5, so the program prints:
box
5

Expected Output:

box
5
Topics:
Polymorphism
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.