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