コード例 #1
0
ファイル: LLQueue.cs プロジェクト: AlexL70/Algorithms
 public Enumerator(LLQueue <T> outer)
 {
     _outer   = outer;
     _current = null;
 }
コード例 #2
0
ファイル: LLQueue.cs プロジェクト: AlexL70/Algorithms
 public void Dispose()
 {
     _current = null;
     _outer   = null;
 }