7 writes to Next
System.Windows.Forms.Primitives (7)
System\Windows\Forms\SinglyLinkedList.cs (7)
32
node.
Next
= First;
53
Last!.
Next
= node;
159
_previous!.
Next
= null;
168
_previous!.
Next
= next;
204
_previous.
Next
= null;
209
_previous.
Next
= _current.Next;
213
_current.
Next
= _list.First;
6 references to Next
System.Windows.Forms.Primitives (6)
System\Windows\Forms\SinglyLinkedList.cs (6)
113
else if (_current.
Next
is not null)
117
_current = _current.
Next
;
151
_list.First = _current.
Next
;
166
Node? next = _current.
Next
;
199
if (_current.
Next
is null)
209
_previous.Next = _current.
Next
;