示例#1
0
 public EnumerableSurrogate(ReferenceMap <KeyType, ValueType> map, bool forward, bool robust, bool startKeyed, KeyType startKey)
 {
     this.map        = map;
     this.forward    = forward;
     this.robust     = robust;
     this.startKeyed = startKeyed;
     this.startKey   = startKey;
 }
示例#2
0
 public ReferenceMap(ReferenceMap <KeyType, ValueType> original)
 {
     items.AddRange(original.items);
 }