1 write to _key
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2214_key = key;
22 references to _key
System.Private.CoreLib (22)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (22)
326EqualityComparer<TKey>.Default.Equals(node._key, key) : 327comparer.Equals(node._key, key); 331return comparer.Equals(node._key, key); 533if (hashcode == n._hashcode && EqualityComparer<TKey>.Default.Equals(n._key, key)) 546if (hashcode == n._hashcode && comparer.Equals(n._key, key)) 567if (hashcode == n._hashcode && EqualityComparer<TKey>.Default.Equals(n._key, key)) 579if (hashcode == n._hashcode && comparer.Equals(n._key, key)) 681var newNode = new Node(node._key, newValue, hashcode, node._next); 813array[index] = new KeyValuePair<TKey, TValue>(current._key, current._value); 828array[index] = new DictionaryEntry(current._key, current._value); 843array[index] = new KeyValuePair<TKey, TValue>(current._key, current._value); 896Current = new KeyValuePair<TKey, TValue>(node._key, node._value); 979var newNode = new Node(node._key, value, hashcode, node._next); 2025int hashCode = upgradeComparer is null ? current._hashcode : upgradeComparer.GetHashCode(current._key); 2030newBucket = new Node(current._key, current._value, hashCode, newBucket); 2143keys[i] = node._key; 2422if (hashcode == node._hashcode && comparer.Equals(key, node._key)) 2439var newNode = new Node(node._key, value, hashcode, node._next); 2551if (hashcode == n._hashcode && comparer.Equals(key, n._key)) 2553actualKey = n._key; 2624if (hashcode == curr._hashcode && comparer.Equals(key, curr._key)) 2635actualKey = curr._key;