My Apps
-
Recent Posts
Archives
- March 2020
- June 2019
- May 2019
- August 2018
- September 2016
- August 2016
- July 2016
- April 2016
- September 2015
- May 2015
- April 2015
- June 2014
- April 2014
- March 2014
- June 2013
- February 2013
- January 2013
- December 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
Categories
Negative Eddy on Twitter
Tweets by negativeeddyMeta
Tag Archives: Task
Raw threads and async lambdas
Using async methods/lambdas where they are not expected causes unexpected problems. The typical example I discuss with people is TaskFactory.StartNew() because its an easy way to create Tasks and some people reach for that instead of Task.Run(), but I recently … Continue reading
Waaaaay oversimplified async/await plumbing
[cross posted from my MSDN blog] Often, when someone asks “how does this async await stuff actually work”? There is a lot of hand waving or someone says “just use reflection and look at it” but the real compiled code … Continue reading