Remove() 개인적인 메소드

private Remove ( Thread t ) : void
t Thread
리턴 void
예제 #1
0
파일: Thread.cs 프로젝트: zxz2020/Emby
 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);
     }
 }