Remove() приватный Метод

private Remove ( Thread t ) : void
t Thread
Результат void
Пример #1
0
 private void InternalRun()
 {
     _wrapperThread = this;
     try {
         _runnable.Run();
     } catch (Exception exception) {
         Console.WriteLine(exception);
     } finally {
         _tgroup.Remove(this);
     }
 }
Пример #2
0
 private void InternalRun()
 {
     _wrapperThread = this;
     try {
         _runnable.Run();
     } catch (Exception exception) {
         LogStream.GetInstance().WriteLine(exception);
     } finally {
         _tgroup.Remove(this);
     }
 }