Skip to content

Instantly share code, notes, and snippets.

@qwerty2501
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwerty2501/11215506 to your computer and use it in GitHub Desktop.
Save qwerty2501/11215506 to your computer and use it in GitHub Desktop.
//ライブラリ側のコード
public static async Task DoAsync()
{
//デッドロックを回避するにはConfigureAwait(false)メソッドを呼び出す
await HeavyWorkAsync().ConfigureAwait(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment