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
If you can change the signature of your function to async Task then you can use the code presented here
async Task