//Adds an item to the end of the queue public void enqueue(string item) { myList.Add(item); }
public void testAdd() { testList.Add("a"); testList.Add("b"); testList.Add("c"); }