How can I wait for a void async method to finish its job?
void async
for example, I have a function like below:
async void LoadBlahBlah() { awa
do a AutoResetEvent, call the function then wait on AutoResetEvent and then set it inside async void when you know it is done.
You can also wait on a Task that returns from your void async