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