T
Tony Johansson
Hello!
What actually does this sentence mean?
Create a linked-list generic class that enables you to create a chain of
different objects types.
When I create a linked-list generic class for example with the string type.
I do the following.
List<string> myList = new List<string>();
So what can they mean when they say different objects types.
Does it sounds reasonable that they mean a linked-list of object like this
List<Object> myList = new List<Object>();
//Tony
What actually does this sentence mean?
Create a linked-list generic class that enables you to create a chain of
different objects types.
When I create a linked-list generic class for example with the string type.
I do the following.
List<string> myList = new List<string>();
So what can they mean when they say different objects types.
Does it sounds reasonable that they mean a linked-list of object like this
List<Object> myList = new List<Object>();
//Tony