Creating a circually linked list in C#?
Posted
by Dexter
on Stack Overflow
See other posts from Stack Overflow
or by Dexter
Published on 2009-04-04T01:18:33Z
Indexed on
2010/04/19
19:33 UTC
Read the original article
Hit count: 250
What would be the best way to create a circually linked list in C#. Should I derive it from the LinkedList< T> collection? I'm planning on creating a simple address book using this Linked List to store my contacts (it's gonna be a suck-y address book, but I don't care cause I'll be the only one to use it). I mainly just want to create the crucially linked list so that I can use it again in other projects.
If you don't think the Linked List is the right way to go let me know which way would be better.
© Stack Overflow or respective owner