Inheritance: IDisposable
コード例 #1
0
ファイル: Program.cs プロジェクト: rotators/fomono
 static void StartREPL()
 {
     var thread = new Thread(() =>
     {
         var repl = new REPL();
         repl.Process();
     });
     thread.Start();
 }