2 instantiations of DictionaryNode
System.Collections.Specialized (2)
System\Collections\Specialized\ListDictionary.cs (2)
86DictionaryNode newNode = new DictionaryNode(); 168DictionaryNode newNode = new DictionaryNode();
17 references to DictionaryNode
System.Collections.Specialized (17)
System\Collections\Specialized\ListDictionary.cs (17)
16private DictionaryNode? head; // Do not rename (binary serialization) 36DictionaryNode? node = head; 68DictionaryNode? last = null; 69DictionaryNode? node; 86DictionaryNode newNode = new DictionaryNode(); 156DictionaryNode? last = null; 158for (DictionaryNode? node = head; node != null; node = node.next) 168DictionaryNode newNode = new DictionaryNode(); 193for (DictionaryNode? node = head; node != null; node = node.next) 213for (DictionaryNode? node = head; node != null; node = node.next) 235DictionaryNode? last = null; 236DictionaryNode? node; 265private DictionaryNode? _current; 368for (DictionaryNode? node = _list.head; node != null; node = node.next) 380for (DictionaryNode? node = _list.head; node != null; node = node.next) 413private DictionaryNode? _current; 475public DictionaryNode? next; // Do not rename (binary serialization)