예제 #1
0
파일: LinkedQueue.cs 프로젝트: dpetrova/HQC
 /// <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;
 }