1 write to m_key
mscorlib (1)
system\Collections\Concurrent\ConcurrentDictionary.cs (1)
2138m_key = key;
13 references to m_key
mscorlib (13)
system\Collections\Concurrent\ConcurrentDictionary.cs (13)
450if (comparer.Equals(curr.m_key, key)) 515if (comparer.Equals(n.m_key, key)) 575if (comparer.Equals(node.m_key, key)) 585Node newNode = new Node(node.m_key, newValue, hashcode, node.m_next); 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); 851if (comparer.Equals(node.m_key, key)) 864Node newNode = new Node(node.m_key, value, hashcode, node.m_next); 1896nodeHashCode = newComparer.GetHashCode(current.m_key); 1901newBuckets[newBucketNo] = new Node(current.m_key, current.m_value, nodeHashCode, newBuckets[newBucketNo]); 2047keys.Add(current.m_key);