Skip to content

Instantly share code, notes, and snippets.

@bwatts
Created October 2, 2014 05:46
Show Gist options
  • Save bwatts/762afe2f884cb787044b to your computer and use it in GitHub Desktop.
Save bwatts/762afe2f884cb787044b to your computer and use it in GitHub Desktop.
public static ConfiguredTaskAwaitable OnThreadpool(this Task task)
{
return task.ConfigureAwait(false);
}
public static ConfiguredTaskAwaitable<TResult> OnThreadpool<TResult>(this Task<TResult> task)
{
return task.ConfigureAwait(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment