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)
157
Debug.Assert(
_previous
is not null);
158
_list.Last =
_previous
;
159
_previous
!.Next = null;
160
_current =
_previous
;
165
Debug.Assert(
_previous
is not null);
167
_current =
_previous
;
168
_previous
!.Next = next;
197
Debug.Assert(
_previous
is not null);
203
_list.Last =
_previous
;
204
_previous
.Next = null;
209
_previous
.Next = _current.Next;
217
_current =
_previous
;