3 writes to next
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (3)
73last.next = newNode; 118last.next = newNode; 202last!.next = node.next;
13 references to next
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (13)
42node = node.next; 53for (node = head; node != null; node = node.next) 103for (DictionaryNode? node = head; node != null; node = node.next) 138for (DictionaryNode? node = head; node != null; node = node.next) 160for (DictionaryNode? node = head; node != null; node = node.next) 184for (node = head; node != null; node = node.next) 198head = node.next; 202last!.next = node.next; 275current = current.next; 312for (DictionaryNode? node = list.head; node != null; node = node.next) 324for (DictionaryNode? node = list.head; node != null; node = node.next) 385current = current.next; 428for (DictionaryNode? node = _list.head; node != null; node = node.next)