S
sejong510
MSDN has an example of creating a LinkedList populated with String
objects:
http://msdn2.microsoft.com/en-us/library/he2s3bh7.aspx
But, how would you have a LinkedList of a created class?
LinkedList<CreatedClass> ll = new LinkedList<CreatedClass>();
class CreatedClass {
.... // Specifically, what interface, if any, does this class need to
implement?
}
Thanks.
Ps. I did search Google for it, but ended up with vague references to
__typeOf(CreatedClass) or Of CreatedClass but nothing that gives an
overview of the .NET LinkedList class with user-created objects.
objects:
http://msdn2.microsoft.com/en-us/library/he2s3bh7.aspx
But, how would you have a LinkedList of a created class?
LinkedList<CreatedClass> ll = new LinkedList<CreatedClass>();
class CreatedClass {
.... // Specifically, what interface, if any, does this class need to
implement?
}
Thanks.
Ps. I did search Google for it, but ended up with vague references to
__typeOf(CreatedClass) or Of CreatedClass but nothing that gives an
overview of the .NET LinkedList class with user-created objects.