Exemplo n.º 1
0
 public string[] ReturnQueueCommand()
 {
     return(QueueCommands.ToArray <string>());
 }
Exemplo n.º 2
0
 public string RemoveCommand()
 {
     return(QueueCommands.Dequeue());
 }
Exemplo n.º 3
0
 public string CheckCommand()
 {
     return(QueueCommands.Peek());
 }
Exemplo n.º 4
0
 public void AddComamand(string Comando)
 {
     QueueCommands.Enqueue(Comando);
 }