Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Immo Landwerth and Andrew Arnott: Inside Immutable Collections
Mar 20, 2013 at 4:52 AMThanks for the great video, guys! It's nice to know the underlying data structures.
Just one question (for the interviewer): how is async being overused?
-Steve
Easy Asynchrony with C#: No More Callbacks!
Nov 07, 2012 at 1:27 PM@KarlZ: You can unit test asynchronous code in VS2012 with MSTest or xUnit by declaring your unit tests as "async Task" instead of "void".
Async in ASP.NET
Jul 19, 2012 at 8:47 AMThanks, guys! Great content!
In particular, thanks for not just showing "what works" but also the pitfalls.
Just a couple of notes:
await Task.WhenAll(results);
return results.Select(t => t.Result);
with:
return await Task.WhenAll(results);
-Steve
The zen of async: Best practices for best performance
Sep 18, 2011 at 10:45 AMAwesome talk, Stephen! Wish I could have been there in person!
Thank you in particular for going "deep".
One quick question re your demo where Wait causes a deadlock: is that a change in behavior? I haven't tried it, but from my understanding of http://blogs.msdn.com/b/pfxteam/archive/2009/10/15/9907713.aspx, I would expect Wait to run the task inline in this scenario.