Why you may be doing async wrong, in C#.
I often see code that shares some fundamental problems with how the await operator has been applied to asynchronous method calls in C#.
This article aims to demystify asynchronous operations. To dispel some of the myths about async code, and to corre...
alt-dev.com.au9 min read
Victor Palomares
SW developer :)
Nice article Ashley! As a point of favour of WhenAll is that the AggregateException is only raised with
WaitAll.WhenAllor individual calls would raise the original exception.