7 writes to _next
System.Web (7)
Util\DoubleLink.cs (7)
22_next = _prev = this; 31this._next = after._next; 32after._next = this; 38this._next = before; 40this._prev._next = this; 44this._prev._next = this._next; 46_next = _prev = this;
6 references to _next
System.Web (6)
Util\DoubleLink.cs (5)
27internal DoubleLink Next {get {return _next;}} 31this._next = after._next; 33this._next._prev = this; 44this._prev._next = this._next; 45this._next._prev = this._prev;
Util\DoubleLinkList.cs (1)
23return _next == this;