Node<T> class

Encapsulates a Linked List Node

public class Node<T>

Public Members

name description
Next { get; set; } Next node in the list. Null of this is the tail of the list.
Previous { get; set; } Previous node in the list. Null if this is the head of the list.
Value { get; set; } Object contained at this node in the list.

See Also