আমি এই কোড পেয়েছি:
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));
}
... যে রিশার্পারের পরিদর্শন নিয়ে অভিযোগ করেছিল, " কারণ এই কলটি প্রতীক্ষিত নয়, কলটি শেষ হওয়ার আগেই বর্তমান পদ্ধতির কার্যকরকরণ অব্যাহত রয়েছে। কলটির ফলাফলের জন্য 'অপেক্ষার' অপারেটর প্রয়োগের বিষয়টি বিবেচনা করুন " (লাইনের সাথে লাইনে) মন্তব্য)।
এবং তাই, আমি এটিতে একটি "অপেক্ষা" প্রেন্ডেন্ট করেছিলাম তবে অবশ্যই, আমার তখন কোথাও একটি "অ্যাসিঙ্ক" যুক্ত করা দরকার - তবে কোথায়?
1
ডকস.মাইক্রোসফট.ওন
—
ডটনেট /
@ সমসারা: ভাল লাগল, অবাক হয়েছি যখন তারা শেষ পর্যন্ত ডকুমেন্ট করে সি # স্পপের বাইরে কোথাও। আইআইআরসি, এই প্রশ্ন জিজ্ঞাসা করার সময় কোনও ডকুমেন্টেশন উপস্থিত ছিল না।
—
BoltClock