Skip to content

Instantly share code, notes, and snippets.

@PanosJee
Last active December 31, 2015 19:59
Show Gist options
  • Save PanosJee/8037454 to your computer and use it in GitHub Desktop.
Save PanosJee/8037454 to your computer and use it in GitHub Desktop.
private async void GoTaskUnawaitedMethod(object sender, RoutedEventArgs e)
{
CrashUnawaitedTaskMethod();
}
private async Task CrashUnawaitedTaskMethod()
{
throw new Exception("Task Unawaited");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment