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;
13 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
;
System.Windows.Forms.Primitives.Tests (7)
System\Windows\Forms\SinglyLinkedListTests.cs (7)
22
Assert.Null(list.First!.
Next
);
30
Assert.Same(list.First.
Next
, list.Last);
31
Assert.Null(list.Last!.
Next
);
50
Assert.Null(list.First!.
Next
);
58
Assert.Same(list.First.
Next
, list.Last);
59
Assert.Null(list.Last!.
Next
);
182
node = node.
Next
;