public string Get(CompositeKeyAlsoOk key)
 {
     return(_dictionary[key]);
 }
 public void Add(CompositeKeyAlsoOk key, string value)
 {
     _dictionary.Add(key, value);
 }