6 writes to list
System.Collections (6)
System\Collections\Generic\LinkedList.cs (6)
87newNode.list = this; 107newNode.list = this; 142node.list = this; 171node.list = this; 601this.list = list; 631list = null;
8 references to list
System.Collections (8)
System\Collections\Generic\LinkedList.cs (8)
77LinkedListNode<T> result = new LinkedListNode<T>(node.list!, value); 93LinkedListNode<T> result = new LinkedListNode<T>(node.list!, value); 399Debug.Assert(node.list == this, "Deleting the node from another list!"); 424if (node.list != null) 434if (node.list != this) 607get { return list; } 612get { return next == null || next == list!.head ? null : next; } 617get { return prev == null || this == list!.head ? null : prev; }