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