Esempio n. 1
0
 private void button_sortQueue_Click(object sender, EventArgs e)
 {
     Q.Delete();
     textBox_SortQueue.Lines = Q.GetstringQueue(Q);
 }
Esempio n. 2
0
 private void button_rndQueue_Click(object sender, EventArgs e)
 {
     Q = MyQueue.RandomQueue(Q);
     textBox_Queue.Lines = Q.GetstringQueue(Q);
 }