Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@viking8 I'm still far away from understanding it.
I kept expecting await to wait for the asynchronous task to finished. Alas, that was not the case -
nicholai8938yIn JavaScript you can push promises to an array and then wait for them all to finish their async task, pretty good for using async functions in loops, nothing similar in c#?
-
@nicholai Supposedly there's Task.WaitAll(), and that slowed it, but still fails to complete all the tasks 😂
-
@viking8 That was partly the issue. I'd never returned the Task 😂
Too long looking at the screen...
Related Rants
Today has been a battle of async methods and foreach loops
undefined
c#
async