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