Exemplo n.º 1
0
 public QueueNode(int value)
 {
     this.nodeValue = value;
     this.next      = null;
 }
Exemplo n.º 2
0
 public void Dequeue()
 {
     this.first = this.first.NEXT;
     this.queueLength--;
 }