3 writes to next
mscorlib (3)
system\collections\listdictionaryinternal.cs (3)
83
last.
next
= newNode;
170
last.
next
= newNode;
245
last.
next
= node.next;
12 references to next
mscorlib (12)
system\collections\listdictionaryinternal.cs (12)
46
node = node.
next
;
67
for (node = head; node != null; node = node.
next
) {
154
for (node = head; node != null; node = node.
next
) {
189
for (DictionaryNode node = head; node != null; node = node.
next
) {
211
for (DictionaryNode node = head; node != null; node = node.
next
) {
233
for (node = head; node != null; node = node.
next
) {
243
head = node.
next
;
245
last.next = node.
next
;
307
current = current.
next
;
343
for (DictionaryNode node = list.head; node != null; node = node.
next
) {
352
for (DictionaryNode node = list.head; node != null; node = node.
next
) {
410
current = current.
next
;