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