Run() public static method

public static Run ( Microthread microthread ) : void
microthread Microthread
return void
Exemplo n.º 1
0
 /// <summary>
 /// Microthread를 시작하는 메소드
 /// </summary>
 /// <param name="microthread">시작할 Microthread</param>
 public void RunMicrothread(Microthread microthread)
 {
     QueueWorkItem(() => microthread.Run(this));
 }