6 references to _hashtable
System.ComponentModel.TypeConverter (6)
System\ComponentModel\WeakHashtable.cs (6)
21get => _hashtable.TryGetValue(key, out object? value) ? value : null; 22set => _hashtable.AddOrUpdate(key, value); 25public bool ContainsKey(object key) => _hashtable.TryGetValue(key, out object? _); 27public void Remove(object key) => _hashtable.Remove(key); 29public IEnumerator<KeyValuePair<object, object?>> GetEnumerator() => ((IEnumerable<KeyValuePair<object, object?>>)_hashtable).GetEnumerator(); 31IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable<KeyValuePair<object, object?>>)_hashtable).GetEnumerator();