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