3 writes to m_value
mscorlib (3)
system\Collections\Concurrent\ConcurrentDictionary.cs (3)
581node.m_value = newValue; 860node.m_value = value; 2139m_value = value;
11 references to m_value
mscorlib (11)
system\Collections\Concurrent\ConcurrentDictionary.cs (11)
454bool valuesMatch = EqualityComparer<TValue>.Default.Equals(oldValue, curr.m_value); 471value = curr.m_value; 517value = n.m_value; 577if (valueComparer.Equals(node.m_value, comparisonValue)) 734array[index] = new KeyValuePair<TKey, TValue>(current.m_key, current.m_value); 752array[index] = new DictionaryEntry(current.m_key, current.m_value); 770array[index] = new KeyValuePair<TKey, TValue>(current.m_key, current.m_value); 796yield return new KeyValuePair<TKey, TValue>(current.m_key, current.m_value); 878resultingValue = node.m_value; 1901newBuckets[newBucketNo] = new Node(current.m_key, current.m_value, nodeHashCode, newBuckets[newBucketNo]); 2081values.Add(current.m_value);