建立和啟動第二個執行緒
如果你正在進行多次長計算,則可以在計算機上的不同執行緒上同時執行它們。為此,我們建立一個新的 Thread 並讓它指向一個不同的方法。
using System.Threading;
class MainClass {
static void Main() {
var thread = new Thread(Secondary);
thread.Start();
}
static void Secondary() {
System.Console.WriteLine("Hello World!");
}
}