/// <summary> /// Creates a new instance of the dictionary. /// </summary> public SymmetricKeyDictionary() { _storage = new MultiKeyDictionary <TValue>(); _keys = new HashSet <Tuple <TKeys, TKeys> >(); }