I need to pass an argument of type Task
to some function that is not presented here. Inside the function this task will be executed in async way. If there a difference between these three ways to pass it:
1.
Task.Run((Func<Task>)(async () => Foo = await OperateAsync(id)))
2.
Task.Run(async () => Foo = await OperateAsync(id))
3.
((Func<Task>)(async () => Foo = await OperateAsync(id))).Invoke()
Yes.
1 and 2 differ in which overload of
Task.Run
gets called. The latter passes through the result.1 and 2 force
OperateAsync
to the thread pool, 3 doesn't, which can be very visible depending on other details. For example, in desktop applications, ifOperateAsync
ends up accessing UI elements, it must not be called usingTask.Run
.