示例#1
0
 public QueueEnumerator(LinkedListQueue <T> collection)
 {
     this.collection = collection;
     node            = collection.head;
     version         = collection.version;
 }
示例#2
0
 internal LListNode(LinkedListQueue <T> list, T value)
 {
     this.list = list;
     this.item = value;
 }