6 writes to list
System (6)
compmod\system\collections\generic\linkedlist.cs (6)
86
newNode.
list
= this;
103
newNode.
list
= this;
131
node.
list
= this;
154
node.
list
= this;
615
this.
list
= list;
637
list
= null;
8 references to list
System (8)
compmod\system\collections\generic\linkedlist.cs (8)
77
LinkedListNode<T> result = new LinkedListNode<T>(node.
list
, value);
91
LinkedListNode<T> result = new LinkedListNode<T>(node.
list
, value);
345
Debug.Assert( node.
list
== this, "Deleting the node from another list!");
368
if ( node.
list
!= null) {
379
if ( node.
list
!= this) {
620
get { return
list
;}
624
get { return next == null || next ==
list
.head? null: next;}
628
get { return prev == null || this ==
list
.head? null: prev;}