Hacker News new | ask | show | jobs
by bartwe 2114 days ago
C# has been moving much more quickly since then, async/await comes to mind as a feature that didn't work out
1 comments

How did they not work out??
Mainly because its the colored function problem. You end up having to change the call stack all the way up to Task<T>. Once you start using them, everything is a Task.
Or polluting the code with a couple of Task.Run() to avoid having to do just that.