1 write to _node
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2283return ref buckets[bucketNo]._node;
9 references to _node
System.Collections.Concurrent (9)
System\Collections\Concurrent\ConcurrentDictionary.cs (9)
811for (Node? current = bucket._node; current is not null; current = current._next) 826for (Node? current = bucket._node; current is not null; current = current._next) 841for (Node? current = bucket._node; current is not null; current = current._next) 919_node = buckets[i]._node; 2047Node? current = bucket._node; 2171for (Node? node = bucket._node; node is not null; node = node._next) 2207for (Node? node = bucket._node; node is not null; node = node._next) 2259return buckets[HashHelpers.FastMod((uint)hashcode, (uint)buckets.Length, tables._fastModBucketsMultiplier)]._node; 2263return buckets[(uint)hashcode % (uint)buckets.Length]._node;