1 write to _key
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2244
_key
= key;
22 references to _key
System.Collections.Concurrent (22)
System\Collections\Concurrent\ConcurrentDictionary.cs (22)
326
EqualityComparer<TKey>.Default.Equals(node.
_key
, key) :
327
comparer.Equals(node.
_key
, key);
331
return comparer.Equals(node.
_key
, key);
533
if (hashcode == n._hashcode && EqualityComparer<TKey>.Default.Equals(n.
_key
, key))
546
if (hashcode == n._hashcode && comparer.Equals(n.
_key
, key))
567
if (hashcode == n._hashcode && EqualityComparer<TKey>.Default.Equals(n.
_key
, key))
579
if (hashcode == n._hashcode && comparer.Equals(n.
_key
, key))
681
var newNode = new Node(node.
_key
, newValue, hashcode, node._next);
813
array[index] = new KeyValuePair<TKey, TValue>(current.
_key
, current._value);
828
array[index] = new DictionaryEntry(current.
_key
, current._value);
843
array[index] = new KeyValuePair<TKey, TValue>(current.
_key
, current._value);
928
Current = new KeyValuePair<TKey, TValue>(node.
_key
, node._value);
1004
var newNode = new Node(node.
_key
, value, hashcode, node._next);
2050
int hashCode = upgradeComparer is null ? current._hashcode : upgradeComparer.GetHashCode(current.
_key
);
2055
newBucket = new Node(current.
_key
, current._value, hashCode, newBucket);
2173
keys[i] = node.
_key
;
2452
if (hashcode == node._hashcode && comparer.Equals(key, node.
_key
))
2469
var newNode = new Node(node.
_key
, value, hashcode, node._next);
2581
if (hashcode == n._hashcode && comparer.Equals(key, n.
_key
))
2583
actualKey = n.
_key
;
2654
if (hashcode == curr._hashcode && comparer.Equals(key, curr.
_key
))
2665
actualKey = curr.
_key
;