public LinkedQueue(T value) { List = new DoubleLinkedList <T>(new Node <T>(value)); }
public LinkedQueue() { List = new DoubleLinkedList <T>(); }