3 writes to next
System.Collections.Specialized (3)
System\Collections\Specialized\ListDictionary.cs (3)
91
last.
next
= newNode;
173
last.
next
= newNode;
257
last.
next
= node.next;
13 references to next
System.Collections.Specialized (13)
System\Collections\Specialized\ListDictionary.cs (13)
46
node = node.
next
;
58
node = node.
next
;
70
for (node = head; node != null; node = node.
next
)
158
for (DictionaryNode? node = head; node != null; node = node.
next
)
193
for (DictionaryNode? node = head; node != null; node = node.
next
)
213
for (DictionaryNode? node = head; node != null; node = node.
next
)
237
for (node = head; node != null; node = node.
next
)
252
head = node.
next
;
257
last.next = node.
next
;
335
_current = _current.
next
;
368
for (DictionaryNode? node = _list.head; node != null; node = node.
next
)
380
for (DictionaryNode? node = _list.head; node != null; node = node.
next
)
452
_current = _current.
next
;