2 writes to _next
MSBuildTaskHost (2)
Concurrent\ConcurrentDictionary.cs (2)
212
prev.
_next
= newNode;
544
_next
= next;
5 references to _next
MSBuildTaskHost (5)
Concurrent\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
);
424
Node next = current.
_next
;