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