コード例 #1
0
ファイル: MyStack.cs プロジェクト: Bondesvick/Generics
 public void TrimExcess()
 {
     _theStackList.TrimExcess();
 }
コード例 #2
0
ファイル: MyQueue.cs プロジェクト: Bondesvick/Generics
 /// <summary>
 /// Sets the capacity of the Queue to the actual size of the queue
 /// </summary>
 public void TrimExcess()
 {
     _theQueueList.TrimExcess();
 }