2 instantiations of DictionaryNode
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (2)
68DictionaryNode newNode = new DictionaryNode(); 113DictionaryNode newNode = new DictionaryNode();
18 references to DictionaryNode
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (18)
20private DictionaryNode? head; // Do not rename (binary serialization) 34DictionaryNode? node = head; 51DictionaryNode? last = null; 52DictionaryNode? node; 68DictionaryNode newNode = new DictionaryNode(); 102DictionaryNode? last = null; 103for (DictionaryNode? node = head; node != null; node = node.next) 113DictionaryNode newNode = new DictionaryNode(); 138for (DictionaryNode? node = head; node != null; node = node.next) 160for (DictionaryNode? node = head; node != null; node = node.next) 182DictionaryNode? last = null; 183DictionaryNode? node; 210private DictionaryNode? current; 312for (DictionaryNode? node = list.head; node != null; node = node.next) 324for (DictionaryNode? node = list.head; node != null; node = node.next) 344private DictionaryNode? current; 408public DictionaryNode? next; 428for (DictionaryNode? node = _list.head; node != null; node = node.next)