3 writes to next
System (3)
compmod\system\collections\specialized\listdictionary.cs (3)
94last.next = newNode; 191last.next = newNode; 276last.next = node.next;
13 references to next
System (13)
compmod\system\collections\specialized\listdictionary.cs (13)
56node = node.next; 65node = node.next; 77for (node = head; node != null; node = node.next) { 179for (node = head; node != null; node = node.next) { 215for (DictionaryNode node = head; node != null; node = node.next) { 236for (DictionaryNode node = head; node != null; node = node.next) { 263for (node = head; node != null; node = node.next) { 274head = node.next; 276last.next = node.next; 337current = current.next; 367for (DictionaryNode node = list.head; node != null; node = node.next) { 376for (DictionaryNode node = list.head; node != null; node = node.next) { 433current = current.next;