3 writes to next
mscorlib (3)
system\collections\listdictionaryinternal.cs (3)
83last.next = newNode; 170last.next = newNode; 245last.next = node.next;
12 references to next
mscorlib (12)
system\collections\listdictionaryinternal.cs (12)
46node = node.next; 67for (node = head; node != null; node = node.next) { 154for (node = head; node != null; node = node.next) { 189for (DictionaryNode node = head; node != null; node = node.next) { 211for (DictionaryNode node = head; node != null; node = node.next) { 233for (node = head; node != null; node = node.next) { 243head = node.next; 245last.next = node.next; 307current = current.next; 343for (DictionaryNode node = list.head; node != null; node = node.next) { 352for (DictionaryNode node = list.head; node != null; node = node.next) { 410current = current.next;