1

我在 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..");
    }
4

1 回答 1

2

尝试

for (int x = 1; x <= i; x++)
{
    Task.Factory.StartNew(RunThread);
}
于 2012-11-17T04:23:11.383 回答