Inheritance: IDisposable
示例#1
0
 static void StartREPL()
 {
     var thread = new Thread(() =>
     {
         var repl = new REPL();
         repl.Process();
     });
     thread.Start();
 }