2 writes to _previous
System.Windows.Forms.Primitives (2)
System\Windows\Forms\SinglyLinkedList.cs (2)
89_previous = null; 116_previous = _current;
12 references to _previous
System.Windows.Forms.Primitives (12)
System\Windows\Forms\SinglyLinkedList.cs (12)
157Debug.Assert(_previous is not null); 158_list.Last = _previous; 159_previous!.Next = null; 160_current = _previous; 165Debug.Assert(_previous is not null); 167_current = _previous; 168_previous!.Next = next; 197Debug.Assert(_previous is not null); 203_list.Last = _previous; 204_previous.Next = null; 209_previous.Next = _current.Next; 217_current = _previous;