Sharpen.ThreadGroup.Remove C# (CSharp) Method

Remove() private method

private Remove ( Thread t ) : void
t Thread
return void
        internal void Remove(Thread t)
        {
            lock (threads) {
                threads.Remove (t);
            }
        }

Usage Example

Example #1
0
 void InternalRun()
 {
     wrapperThread = this;
     try {
         Runnable.Run();
     } catch (Exception exception) {
         System.Diagnostics.Debug.WriteLine(exception);
     } finally {
         tgroup.Remove(this);
     }
 }
All Usage Examples Of Sharpen.ThreadGroup::Remove