4 writes to _value
System.Collections.Concurrent (4)
System\Collections\Concurrent\ConcurrentDictionary.cs (4)
677
node.
_value
= newValue;
975
node.
_value
= value;
2220
_value
= value;
2440
node.
_value
= value;
17 references to _value
System.Collections.Concurrent (17)
System\Collections\Concurrent\ConcurrentDictionary.cs (17)
476
bool valuesMatch = EqualityComparer<TValue>.Default.Equals(oldValue, curr.
_value
);
493
value = curr.
_value
;
535
value = n.
_value
;
548
value = n.
_value
;
569
value = n.
_value
;
581
value = n.
_value
;
669
if (valueComparer.Equals(node.
_value
, comparisonValue))
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
);
896
Current = new KeyValuePair<TKey, TValue>(node._key, node.
_value
);
993
resultingValue = node.
_value
;
2030
newBucket = new Node(current._key, current.
_value
, hashCode, newBucket);
2184
keys[i] = node.
_value
;
2458
resultingValue = node.
_value
;
2559
value = n.
_value
;
2641
value = curr.
_value
;