Metroアプリケーションの一部で例外が発生したときにトリガーされる次のメソッドがあります
void Model_ExceptionOccured(Exception ex)
{
var dlg = new Windows.UI.Popups.MessageDialog("An exception occured during verification: " + ex.Message, "Exception");
dlg.ShowAsync();
}
'dlg.ShowAsync()'-呼び出しは非同期ですが、結果を待つ必要はありません。ただし、コンパイラは警告を生成します。
Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call.
気にする必要がありますか?警告を取り除く以外に、awaitキーワードを追加する必要がある理由はありますか?