I was trying to get familiar with linked lists and found a very simple code snippet to get started:

http://www.bigresource.com/VB-Linked...sPLfTJa4Q.html

But the list I need must not have a beginning and an end, it must be cyclic, the last element must point to the first:

Link 1 => Link 2 => Link 3 => ... => Link N => Link 1

How do I implement this?