M
Marc Gravell
The LinkedListNode<T> is indeed a wrapper aroundt the value (which in
the case of 54, is a value-type [not reference-type as stated]), but
it provides more: from a LinkedListNode<T> you can navigate through
the (doubly-linked) list via Previous, Next and List. The List
maintains these relationships itself, so you can't mess it up...
Marc
the case of 54, is a value-type [not reference-type as stated]), but
it provides more: from a LinkedListNode<T> you can navigate through
the (doubly-linked) list via Previous, Next and List. The List
maintains these relationships itself, so you can't mess it up...
Marc