标签:threading 初识 start zha sleep art read system class
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.System.Threading.ThreadStart(Run));
thread.Start();
Thread.Sleep(10000);
}
}
private static void Run()
{
Console.WriteLine("My name is MEzhanghanmo");
}
}
标签:threading 初识 start zha sleep art read system class
原文地址:https://www.cnblogs.com/HansZimmer/p/9213499.html