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/11215254 to your computer and use it in GitHub Desktop.
Save qwerty2501/11215254 to your computer and use it in GitHub Desktop.
//ライブラリ側のコード
public class DeadlockSample
{
public static async Task DoAsync()
{
//規定のawaitだとライブラリユーザにWaitされた場合デッドロックになる可能性がある
await HeavyWorkAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment