Created
June 1, 2017 06:01
-
-
Save EifelMono/763f2c2b44c6a6191a02b30661ef0317 to your computer and use it in GitHub Desktop.
Tasks.Extensions.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class TasksExtensions | |
{ | |
public static Task AsTask(this CancellationTokenSource cancellationTokenSource) | |
{ | |
return Task.Delay(-1, cancellationTokenSource.Token); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment