Creating a circularly linked list in C#?

后端 未结 10 1191
独厮守ぢ
独厮守ぢ 2020-11-29 06:35

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

10条回答
  •  庸人自扰
    2020-11-29 07:14

    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.

提交回复
热议问题