2 writes to m_initialized
mscorlib (2)
system\threading\ThreadLocal.cs (2)
152m_initialized = true; 204m_initialized = false;
7 references to m_initialized
mscorlib (7)
system\threading\ThreadLocal.cs (7)
197if (id < 0 || !m_initialized) 199Contract.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)? 401if (!m_initialized) 423if (!m_initialized) 539if (slotArray == null || id >= slotArray.Length || (slot = slotArray[id].Value) == null || !m_initialized)