public void Remove(TKey key)
 => dic.Write(d =>
 {
     d.Remove(key);
     _origin.Remove(key);
 });