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