Parks Computing
Pedagogy for the Autodidactic Programmer
Welcome to the personal web site of Paul M. Parks. This is where I keep my web development skills current while sharing snippets of code, utilities, libraries, and what little development wisdom I've gathered in my career. It's also where I show off my family, talk about my hobbies, or just pontificate from time to time.
If you find the articles interesting, or if you'd like more information on a particular topic, let me know [paul@parkscomputing.com].
.NET Linked List
(Note: This is a really old entry that I'm keeping around for historical purposes. Recent releases of the .NET Framework now include a generic linked-list class, as well as other generic containers.)
The .NET framework does not have a generic linked list class among the collection classes in
Posted March 14, 2002
0 Comments
The .NET framework does not have a generic linked list class among the collection classes in
System.Collections. This article describes a linked list class that I wrote that implements System.Collections.IList as well as a new linked-list interface and a bi-directional iterator. Subscribe to Posts [Atom]