Beispiel #1
0
 /// <summary>
 /// Remove all the contents of our queue and set its count to zero.
 /// </summary>
 public void Clear()
 {
     this.head  = null;
     this.tail  = null;
     this.Count = 0;
 }