0
    static void Main(string[] args)
    {
        string x = string.Empty;
        Task t = new Task(() => {
            x = "dd";
        });
        Task<int> cT = t.ContinueWith<int>(gg => {
            return 23;
        });


        t.Start();
        Console.WriteLine(cT.Result);
        Console.ReadLine();
    }

结果:23。是的我想要。所以,我可以说所有任务在 C# 中都有父任务,对吗?

4

1 回答 1

2

t没有父任务,所以不:你不能说“所有任务都有父任务”。那些是延续的将有一个父任务。

于 2012-11-26T09:00:32.653 回答