4 writes to next
System.Core (4)
System\Linq\Enumerable.cs (4)
2419slots[last].next = slots[i].next; 2423slots[i].next = freeList; 2450slots[index].next = buckets[bucket] - 1; 2463newSlots[i].next = newBuckets[bucket] - 1;
5 references to next
System.Core (5)
System\Linq\Enumerable.cs (5)
2413for (int i = buckets[bucket] - 1; i >= 0; last = i, i = slots[i].next) { 2416buckets[bucket] = slots[i].next + 1; 2419slots[last].next = slots[i].next; 2433for (int i = buckets[hashCode % buckets.Length] - 1; i >= 0; i = slots[i].next) { 2440freeList = slots[index].next;