/// <summary> /// Adds an item to the top of the Stack /// </summary> /// <param name="value">the item to add</param> public void Push(T value) { _theStackList.AddFirst(value); }