public bool TryGetValue(object key, out TValue value)
 {
     return(_data.TryGetValue(key, out value));
 }