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