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