标签:
using System;
using System.Threading;
using System.Threading.Tasks;
class StartNewDemo
{
static void Main()
{
while (true)
{
System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(Run));
thread.Start();
Thread.Sleep(10000);
}
}
private static void Run()
{
Console.WriteLine("aaaa");
Console.WriteLine();
}
}
标签:
原文地址:http://www.cnblogs.com/tiancai/p/4618398.html