Top "Taskfactory" questions

TaskFactory is used to create and schedule Task objects in the .Net framework.

TPL TaskFactory.FromAsync vs Tasks with blocking methods

I was wondering if there were any performance implications between using TPL TaskFactory.FromAsync and using TaskFactory.StartNew on blocking …

c#-4.0 task task-parallel-library networkstream taskfactory
TaskFactory.StartNew versus ThreadPool.QueueUserWorkItem

Apparently the TaskFactory.StartNew method in .NET 4.0 is intended as a replacement for ThreadPool.QueueUserWorkItem (according to this post, anyway). …

.net performance task threadpool taskfactory