3 writes to Next
mscorlib (3)
system\threading\ThreadLocal.cs (3)
434
linkedSlot.
Next
= firstRealNode;
442
m_linkedSlot.
Next
= linkedSlot;
772
linkedSlot.Previous.
Next
= linkedSlot.Next;
10 references to Next
mscorlib (10)
system\threading\ThreadLocal.cs (10)
206
for (LinkedSlot linkedSlot = m_linkedSlot.
Next
; linkedSlot != null; linkedSlot = linkedSlot.
Next
)
428
LinkedSlot firstRealNode = m_linkedSlot.
Next
;
483
for (LinkedSlot linkedSlot = m_linkedSlot.
Next
; linkedSlot != null; linkedSlot = linkedSlot.
Next
)
499
for (LinkedSlot linkedSlot = m_linkedSlot.
Next
; linkedSlot != null; linkedSlot = linkedSlot.
Next
)
765
if (linkedSlot.
Next
!= null)
767
linkedSlot.
Next
.Previous = linkedSlot.Previous;
772
linkedSlot.Previous.Next = linkedSlot.
Next
;