//使用ThreadStart委托來衍生三個新線程
using System;
using System
namespace ThreadStartSampleCS
{
class Program
{
static void Main()
{
Thread newThread;
ThreadStart threadMethod = new ThreadStart(DoWork);
for (int counter =
{
Console
newThread = new Thread(threadMethod);
newThread
newThread
}
Console
}
static void DoWork()
{
for (int counter =
{
Console
Thread
}
}
}
}
From:http://tw.wingwit.com/Article/program/net/201311/11465.html