Exemplo n.º 1
0
 public void InitializeQueueArray(Queue<int>[] toInit)
 {
     for (int x = 0; x < toInit.GetLength(0); x++)
     {
         toInit[x] = new Queue<int>();
     }
 }