2 writes to _head
PresentationCore (2)
System\Windows\LayoutManager.cs (2)
864_head = r; 975if(entry.Prev == null) _head = entry.Next;
6 references to _head
PresentationCore (6)
System\Windows\LayoutManager.cs (6)
862r.Next = _head; 863if(_head != null) _head.Prev = r; 933Request r = _head; 951internal bool IsEmpty { get { return (_head == null); }} 958for(Request r = _head; r != null; r = r.Next)