2 writes to m_initialized
mscorlib (2)
system\threading\ThreadLocal.cs (2)
152
m_initialized
= true;
204
m_initialized
= false;
7 references to m_initialized
mscorlib (7)
system\threading\ThreadLocal.cs (7)
197
if (id < 0 || !
m_initialized
)
199
Contract.Assert(id >= 0 || !
m_initialized
, "expected id >= 0 if initialized");
283
&&
m_initialized
// Has the instance *still* not been disposed (important for ----s with Dispose)?
309
&&
m_initialized
// Has the instance *still* not been disposed (important for ----s with Dispose)?
401
if (!
m_initialized
)
423
if (!
m_initialized
)
539
if (slotArray == null || id >= slotArray.Length || (slot = slotArray[id].Value) == null || !
m_initialized
)