gpt4 book ai didi

c# - 转换方法以返回任务

转载 作者:太空宇宙 更新时间:2023-11-03 23:34:14 25 4
gpt4 key购买 nike

如何将以下方法转换为正确的格式以返回任务项。方法 stub 需要使用一个任务。这是我第一次使用 async 方法,我将它用于 Windows Phone 8,如下所示:

private System.Threading.Tasks.Task listView_PullToRefreshRequested(object sender, EventArgs e)
{
Populatelist();
}

public async void Populatelist()
{
try
{
curoListsDal _db = new curoListsDal();
cLists = await _db.GetListsAync();
listView.ItemsSource = cLists;
}
catch (Exception ex)
{
}
}

最佳答案

正确的格式是在 PopulateListAsyncawait 中返回一个 Task 而不是 void您的事件处理程序:

private async void PullToRefreshRequestAsync(object sender, EventArgs e)
{
await PopulateListAsync();
}

public async Task PopulateListAsync()
{
curoListsDal db = new curoListsDal();
listView.ItemsSource = await db.GetListsAsync();
}

旁注:不要吞下异常。

关于c# - 转换方法以返回任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31092196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com