小编Sat*_*h K的帖子

在ContinueWith(anotherTask)+ C#任务并行库中共享变量

我使用continuationWith(anotherTask)创建一个任务,如下所示.我想找出第一项任务完成工作所需的时间.我在task1和子任务之间共享变量"task1StartedDateTime".这会没有任何问题吗?

public static void MyMethod()
{
    var task1StartedDateTime = DateTime.Now;
    var task1 = doWorkAsync();
    task1.ContinueWith(t1 => {
        var task1TookTime = DateTime.Now - task1StartedDateTime;
        Console.WriteLine($"Task 1 took {task1TookTime}");
        //Some other work of this child task
    });
}
Run Code Online (Sandbox Code Playgroud)

c# task-parallel-library

3
推荐指数
1
解决办法
311
查看次数

标签 统计

c# ×1

task-parallel-library ×1