public LinkedDictionary(LinkedDictionary <TKey, TValue> dictionary, IEqualityComparer <TKey> comparer = null)
     : this(comparer)
 {
     foreach (var item in dictionary)
     {
         Add(item);
     }
 }
示例#2
0
 public Hash(int capacity) : base(Class.HASH)
 {
     map = new LinkedDictionary <iObject, iObject>(capacity);
 }
示例#3
0
 public Hash() : base(Class.HASH)
 {
     map = new LinkedDictionary <iObject, iObject>();
 }