public DoubleLinkedList() { Length = 0; _root = null; _tail = null; }
public DoubleLinkedList(int value) { Length = 1; _root = new DNode(value); _tail = _root; }
public DNode(int value) { Value = value; Next = null; Previous = null; }