1 write to m_key
mscorlib (1)
system\Collections\Concurrent\ConcurrentDictionary.cs (1)
2138
m_key
= key;
13 references to m_key
mscorlib (13)
system\Collections\Concurrent\ConcurrentDictionary.cs (13)
450
if (comparer.Equals(curr.
m_key
, key))
515
if (comparer.Equals(n.
m_key
, key))
575
if (comparer.Equals(node.
m_key
, key))
585
Node newNode = new Node(node.
m_key
, newValue, hashcode, node.m_next);
734
array[index] = new KeyValuePair<TKey, TValue>(current.
m_key
, current.m_value);
752
array[index] = new DictionaryEntry(current.
m_key
, current.m_value);
770
array[index] = new KeyValuePair<TKey, TValue>(current.
m_key
, current.m_value);
796
yield return new KeyValuePair<TKey, TValue>(current.
m_key
, current.m_value);
851
if (comparer.Equals(node.
m_key
, key))
864
Node newNode = new Node(node.
m_key
, value, hashcode, node.m_next);
1896
nodeHashCode = newComparer.GetHashCode(current.
m_key
);
1901
newBuckets[newBucketNo] = new Node(current.
m_key
, current.m_value, nodeHashCode, newBuckets[newBucketNo]);
2047
keys.Add(current.
m_key
);