Вопрос

Can any one explain the difference between Task and Task Factory?

task :

 public Task(Func<TResult> function);

Task Factory:

public static TaskFactory<TResult> Factory { get; }

Please explain with uses.

Это было полезно?

Решение

Simply put Task.Run is a simplified version of TaskFactory and does exactly the same. With taskfactory you just have some more options(e.g. TaskCreationOptions)

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top