1 write to _node
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2253return ref buckets[bucketNo]._node;
9 references to _node
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\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) 910_node = buckets[i]._node; 2022Node? current = bucket._node; 2141for (Node? node = bucket._node; node is not null; node = node._next) 2177for (Node? node = bucket._node; node is not null; node = node._next) 2229return buckets[HashHelpers.FastMod((uint)hashcode, (uint)buckets.Length, tables._fastModBucketsMultiplier)]._node; 2233return buckets[(uint)hashcode % (uint)buckets.Length]._node;