2 writes to _head
PresentationCore (2)
System\Windows\LayoutManager.cs (2)
880_head = r; 991if(entry.Prev == null) _head = entry.Next;
6 references to _head
PresentationCore (6)
System\Windows\LayoutManager.cs (6)
878r.Next = _head; 879if(_head != null) _head.Prev = r; 949Request r = _head; 967internal bool IsEmpty { get { return (_head == null); }} 974for(Request r = _head; r != null; r = r.Next)