4 writes to _value
System.Collections.Concurrent (4)
System\Collections\Concurrent\ConcurrentDictionary.cs (4)
677
node.
_value
= newValue;
1000
node.
_value
= value;
2245
_value
= value;
2465
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
);
928
Current = new KeyValuePair<TKey, TValue>(node._key, node.
_value
);
1018
resultingValue = node.
_value
;
2055
newBucket = new Node(current._key, current.
_value
, hashCode, newBucket);
2209
keys[i] = node.
_value
;
2483
resultingValue = node.
_value
;
2584
value = n.
_value
;
2666
value = curr.
_value
;