Saya mendapat kode ini:
private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args)
{
CheckBox ckbx = null;
if (sender is CheckBox)
{
ckbx = sender as CheckBox;
}
if (null == ckbx)
{
return;
}
string groupName = ckbx.Content.ToString();
var contextMenu = new PopupMenu();
// Add a command to edit the current Group
contextMenu.Commands.Add(new UICommand("Edit this Group", (contextMenuCmd) =>
{
Frame.Navigate(typeof(LocationGroupCreator), groupName);
}));
// Add a command to delete the current Group
contextMenu.Commands.Add(new UICommand("Delete this Group", (contextMenuCmd) =>
{
SQLiteUtils slu = new SQLiteUtils();
slu.DeleteGroupAsync(groupName); // this line raises Resharper's hackles, but appending await raises err msg. Where should the "async" be?
}));
// Show the context menu at the position the image was right-clicked
await contextMenu.ShowAsync(args.GetPosition(this));
}
... bahwa inspeksi Resharper mengeluhkan dengan, " Karena panggilan ini tidak ditunggu, pelaksanaan metode saat ini berlanjut sebelum panggilan selesai. Pertimbangkan menerapkan operator 'menunggu' ke hasil panggilan " (pada baris dengan komentar).
Jadi, saya menambahkan "menunggu" untuk itu tetapi, tentu saja, saya kemudian perlu menambahkan "async" di suatu tempat juga - tetapi di mana?
c#
lambda
resharper
windows-store-apps
async-await
B. Clay Shannon
sumber
sumber
Jawaban:
Untuk menandai lambda async, cukup tambahkan
async
sebelum daftar argumennya:sumber
Dan bagi Anda yang menggunakan ekspresi anonim:
sumber