What would be the best way to create a circularly linked list in C#. Should I derive it from the LinkedList< T> collection? I\'m planning on creating a simple address boo
Do you have a specific requirement to use a circularly linked list (i.e. homework)? If not, I would suggest using the simple List class to store your contacts.