8
È possibile attendere un evento anziché un altro metodo asincrono?
Nella mia app metro C # / XAML, c'è un pulsante che avvia un processo di lunga durata. Quindi, come raccomandato, sto usando async / await per assicurarmi che il thread dell'interfaccia utente non venga bloccato: private async void Button_Click_1(object sender, RoutedEventArgs e) { await GetResults(); } private async Task …