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
I don't think a circular linked list is the right data structure for a contacts list. A simple List<> or Collection<> should suffice.