12 references to _list
System.Windows.Forms.Primitives (12)
System\Windows\Forms\SinglyLinkedList.cs (12)
104
if (_finished ||
_list
.Count == 0)
111
_current =
_list
.First;
148
if (_current ==
_list
.First)
151
_list
.First = _current.Next;
154
else if (_current ==
_list
.Last)
158
_list
.Last = _previous;
172
_list
.Count--;
190
if (_current ==
_list
.First)
202
Debug.Assert(
_list
.Last == _current);
203
_list
.Last = _previous;
213
_current.Next =
_list
.First;
214
_list
.First = _current;