I need a circular linked list, so I am wondering if LinkedList is a circular linked list?
LinkedList
If you need a circular data structure, have a look at the C5 generic collections library. They have any collection that's imaginably useful in there, including a circular queue (which might help you).