5 writes to next
System.Collections (5)
System\Collections\Generic\LinkedList.cs (5)
379
newNode.
next
= node;
381
node.prev!.
next
= newNode;
390
newNode.
next
= newNode;
409
node.prev!.
next
= node.next;
632
next
= null;
14 references to next
System.Collections (14)
System\Collections\Generic\LinkedList.cs (14)
78
InternalInsertNodeBefore(node.
next
!, result);
86
InternalInsertNodeBefore(node.
next
!, newNode);
216
node = node.
next
;
235
node = node.
next
;
246
node = node.
next
;
401
if (node.
next
== node)
408
node.
next
!.prev = node.prev;
409
node.prev!.next = node.
next
;
412
head = node.
next
;
490
node = node.
next
;
550
_node = _node.
next
;
612
get { return
next
== null ||
next
== list!.head ? null :
next
; }