/// <summary> /// Constructor instantiating the linked list /// </summary> public LinkedListStack() { top = new SinglyLinkedList(); }