public void Dispose()
        {
            if (m_continuation != null)
            {
                m_continuation.Dispose();
                m_continuation = null;
            }

            m_startDelegate = null;
        }
示例#2
0
 public MicroThread(MicroThreadStart start)
 {
     m_startDelegate = start;
 }
示例#3
0
        public void Dispose()
        {
            if (m_continuation != null)
            {
                m_continuation.Dispose();
                m_continuation = null;
            }

            m_startDelegate = null;
        }
 public MicroThread(MicroThreadStart start)
 {
     m_startDelegate = start;
 }