Comment puis-je attendre un void async
pour terminer son travail ?
Par exemple, j'ai une fonction comme ci-dessous :
async void LoadBlahBlah()
{
await blah();
...
}
maintenant je veux m'assurer que tout a été chargé avant de continuer ailleurs.