4 writes to head
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (4)
77head = newNode; 122head = newNode; 130head = null; 198head = node.next;
12 references to head
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (12)
34DictionaryNode? node = head; 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) 196if (node == head) 268current = list.head; 312for (DictionaryNode? node = list.head; node != null; node = node.next) 324for (DictionaryNode? node = list.head; node != null; node = node.next) 378current = list.head; 428for (DictionaryNode? node = _list.head; node != null; node = node.next)