public override void Remove(object key)
 {
     dict.Remove(key);
 }
 public bool Remove(TKey key)
 {
     return(dict.Remove(key));
 }