111,126
社区成员
发帖
与我相关
我的任务
分享
protected void Go()
{
object obj=new object();
Thread th = new Thread(() => {
for (int i = 0; i < 1000; i++)
{
Thread.Sleep(500);
}
});
th.IsBackground = true;
th.Start();
}
static Main(string[] args)
{
Go();
Console.ReadKey();
}