2 writes to _next
MSBuildTaskHost (2)
Collections\ConcurrentDictionary.cs (2)
212
prev.
_next
= newNode;
523
_next
= next;
5 references to _next
MSBuildTaskHost (5)
Collections\ConcurrentDictionary.cs (5)
148
n = n.
_next
;
189
for (Node? node = tables._buckets[bucketNo]; node != null; node = node.
_next
)
191
Debug.Assert((prev == null && node == tables._buckets[bucketNo]) || prev!.
_next
== node);
205
Node newNode = new Node(node._key, value, hashcode, node.
_next
);
418
Node? next = current.
_next
;