我在 c# 的任务类中感到困惑。我想知道我的 c# 线程代码与任务的等效行是什么?
static void Main(string[] args)
{
int i = 3;
for (int x = 1; x <= i; x++)
{
Thread t = new Thread(RunThread);
t.Start();
}
Console.ReadLine();
}
public static void RunThread()
{
Console.WriteLine("Thread..");
}