상속: IDisposable
예제 #1
0
파일: Program.cs 프로젝트: rotators/fomono
 static void StartREPL()
 {
     var thread = new Thread(() =>
     {
         var repl = new REPL();
         repl.Process();
     });
     thread.Start();
 }