Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

private async void LoadAccount()
{
Account account = await DownloadAccount();
MessageBox.Show("Account downloaded");
}
private async Task<Account> DownloadAccount()
{
return await Task.Run(() =>
{