views:

33

answers:

1

creating a linked_list generic class that enables you to create a chain of objects of different types.

+1  A: 

Is possibly LinkedList<object> what you want? that lets you put any item into the list, regardless of it's type

Richard J. Ross III