Task.Run vs Invoke() difference

3.2k Views Asked by At

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()
1

There are 1 best solutions below

2
On BEST ANSWER

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, if OperateAsync ends up accessing UI elements, it must not be called using Task.Run.