예제 #1
0
 /// <summary>
 /// Constructor. Pass the B-Tree instance you want to enumerate its items/elements on.
 /// </summary>
 /// <param name="BTree">BTree instance items will be enumerated</param>
 public BTreeEnumeratorDefault(BTreeDictionary <TKey, TValue> BTree) : base(BTree)
 {
 }
예제 #2
0
 /// <summary>
 /// Constructor. Pass the B-Tree instance you want to enumerate its items/elements on.
 /// </summary>
 /// <param name="BTree">BTree instance items will be enumerated</param>
 public BTreeEnumerator(BTreeDictionary <TKey, TValue> BTree)
 {
     this.BTree = BTree;
     this.Reset();
 }