2 writes to Value
mscorlib (2)
system\threading\ThreadLocal.cs (2)
222
slotArray[id].
Value
= null;
447
slotArray[id].
Value
= linkedSlot;
9 references to Value
mscorlib (9)
system\threading\ThreadLocal.cs (9)
221
slotArray[id].
Value
.Value = default(T);
282
&& (slot = slotArray[id].
Value
) != null // Has a LinkedSlot object has been allocated for this ID?
308
&& (slot = slotArray[id].
Value
) != null // Has a LinkedSlot object has been allocated for this ID?
386
if (slotArray[id].
Value
== null)
394
LinkedSlot slot = slotArray[id].
Value
;
524
return slotArray != null && id < slotArray.Length && slotArray[id].
Value
!= null;
539
if (slotArray == null || id >= slotArray.Length || (slot = slotArray[id].
Value
) == null || !m_initialized)
572
LinkedSlot linkedSlot = table[i].
Value
;
747
LinkedSlot linkedSlot = slotArray[i].
Value
;