c# Programming Glossary: m_threadlist
Getting list of currently active managed threads in .NET? http://stackoverflow.com/questions/1825882/getting-list-of-currently-active-managed-threads-in-net class TrackedThread private static readonly List Thread m_threadList new List Thread private readonly Thread m_thread private readonly.. new Thread this.StartThreadParameterized lock m_threadList m_threadList.Add this.m_thread public TrackedThread ThreadStart.. Thread this.StartThreadParameterized lock m_threadList m_threadList.Add this.m_thread public TrackedThread ThreadStart start ..
|