Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Task.Factory.StartNew() basically receives an Action and returns a Task. In The Async CTP we have TaskEx.Run() which also receives an Action and returns a Task. They seem to do that same thing. Why TaskEx.Run() was introduced ?

share|improve this question
4  
TaskEx.Run is now Task.Run in the .NET 4.5 RTM framework TaskEx was needed as a temporary measure – Simon_Weaver Sep 9 '12 at 7:21

2 Answers

up vote 3 down vote accepted

Anders Hejlsberg talked about that briefly in an interview on Channel9. Apparently, Task.Run is just a shorthand for Task.Factory.StartNew. Its still early CTP days so we're unsure that Task.Run will make it int. I personally hope it won't because it's kind of redundant. :)

share|improve this answer
2  
It did :-) I wish the documentation for this mentioned it was a shorthand for Task.Factory.StartNew - msdn.microsoft.com/en-us/library/hh195051.aspx – Simon_Weaver Sep 9 '12 at 7:22

Stephen Toub covered it in his article. They are the same, one being shorthand for the other.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.