Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Future<T> type in .NET?

Tags:

.net

My Google-fu is failing me -- Is there a Future<T> type in .NET?

I thought I remembered seeing some code for that, but maybe I was reading Java....

By the way, my musing started after reading This Article

like image 438
Jimmy Avatar asked Jan 19 '10 08:01

Jimmy


1 Answers

Future<T> is a part of the Task Parallel Library and was renamed to Task<TResult> in beta 1.

http://social.msdn.microsoft.com/Forums/en-US/parallelextensions/thread/a3d36832-c81e-4e51-b594-fdbc9d7c0e31/

like image 117
Yannick Motton Avatar answered Oct 05 '22 03:10

Yannick Motton