3 writes to next
System.Collections.Specialized (3)
System\Collections\Specialized\ListDictionary.cs (3)
91last.next = newNode; 173last.next = newNode; 257last.next = node.next;
13 references to next
System.Collections.Specialized (13)
System\Collections\Specialized\ListDictionary.cs (13)
46node = node.next; 58node = node.next; 70for (node = head; node != null; node = node.next) 158for (DictionaryNode? node = head; node != null; node = node.next) 193for (DictionaryNode? node = head; node != null; node = node.next) 213for (DictionaryNode? node = head; node != null; node = node.next) 237for (node = head; node != null; node = node.next) 252head = node.next; 257last.next = node.next; 335_current = _current.next; 368for (DictionaryNode? node = _list.head; node != null; node = node.next) 380for (DictionaryNode? node = _list.head; node != null; node = node.next) 452_current = _current.next;