TaskFactory is used to create and schedule Task objects in the .Net framework.
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 taskfactoryApparently 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