
Simplify working with parallel tasks in C# (updated)
No doubts that async/await pattern has significantly ... async Task<TRes> Result()
{
await Task ... ()
{
return mapper(await source, await exec(await source).Task ...
Read more →