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