5 writes to m_boxed
mscorlib (5)
system\Lazy.cs (5)
355m_boxed = boxed; 361Interlocked.CompareExchange(ref m_boxed, boxed, null) != null) 389m_boxed = boxed; 442m_boxed = new LazyInternalExceptionHolder(ex); 457m_boxed = new LazyInternalExceptionHolder(ex);
13 references to m_boxed
mscorlib (13)
system\Lazy.cs (13)
250return ((Boxed)m_boxed).m_value; 272get { return m_boxed is LazyInternalExceptionHolder; } 288return m_boxed != null && m_boxed is Boxed; 319if (m_boxed != null ) 322boxed = m_boxed as Boxed; 328LazyInternalExceptionHolder exc = m_boxed as LazyInternalExceptionHolder; 329Contract.Assert(m_boxed != null); 366boxed = (Boxed)m_boxed; 384Contract.Assert(m_boxed != null); 386if (m_boxed == null) 394boxed = m_boxed as Boxed; 397LazyInternalExceptionHolder exHolder = m_boxed as LazyInternalExceptionHolder;