I am using a console app as a proof of concept and new need to get an async return value.
I figured out that I need to use Task.WaitAll()
in my main method to avoid needing an async "main()" method, which is illegal.
I'm now stuck trying to figure out an overload that allows me to use generics or just returns an object that I can cast, but while in Main().
For best practice, use the new async way of doing things. Instead of
Task.WaitAll
useawait Task.WhenAll
Task.WaitAny
useawait Task.WhenAny
The code above can be written as:
You don't get a return value from
Task.WaitAll
. You only use it to wait for completion of multiple tasks and then get the return value from the tasks themselves.If you only have a single
Task
, just use theResult
property. It will return your value and block the calling thread if the task hasn't finished yet:It's generally not a good idea to synchronously wait (block) on an asynchronous task ("sync over async"), but I guess that's fine for a POC.