L
Lee
In trying to dupicate System.Collections.Generic.LinkedList, I hit a
snag.
LinkedList implements the ICollection<T> interface yet there is no Add
() method that is required by the interface.
Instead LinkedList has four different functions to add elements to the
list.
You can prove that the method Add exists by casting the the LinkedList
to ICollection.
How can I, if possible, replicate this is C#.
L. Lee Saunders
http://oldschooldotnet.blogspot.com
snag.
LinkedList implements the ICollection<T> interface yet there is no Add
() method that is required by the interface.
Instead LinkedList has four different functions to add elements to the
list.
You can prove that the method Add exists by casting the the LinkedList
to ICollection.
How can I, if possible, replicate this is C#.
L. Lee Saunders
http://oldschooldotnet.blogspot.com