public bool TryAdd(TWeakKey1 weakKey1, TWeakKey2 weakKey2, TStrongKey strongKey, TValue value)
 {
     return(_internalDictionary.TryAdd(Stacktype.Create(weakKey1, weakKey2, strongKey), value));
 }
Beispiel #2
0
 public bool TryAdd(TStrongKey strongKey, TValue value)
 {
     return(_internalDictionary.TryAdd(new StrongKey <TStrongKey>(strongKey), value));
 }
 public bool TryAdd(TStrongKey strongKey, TValue value)
 {
     return(_internalDictionary.TryAdd(Stacktype.Create(strongKey), value));
 }