Concurrent\ConcurrentDictionary.cs (3)
205Node newNode = new Node(node._key, value, hashcode, node._next);
227Interlocked.Exchange(ref tables._buckets[bucketNo], new Node(key, value, hashcode, tables._buckets[bucketNo]));
428newBuckets[newBucketNo] = new Node(current._key, current._value, current._hashcode, newBuckets[newBucketNo]);