public MyStack(int capacity) { mylist = new LinearArrayList(capacity); }
/// <summary> /// Sets the size of the array /// using capacity as the value /// to be entered by user /// </summary> /// <param name="capacity"></param> public MyQueue(int capacity) { mylist = new LinearArrayList(capacity); }