Skip to content

Instantly share code, notes, and snippets.

@EifelMono
Created June 1, 2017 06:01
Show Gist options
  • Save EifelMono/763f2c2b44c6a6191a02b30661ef0317 to your computer and use it in GitHub Desktop.
Save EifelMono/763f2c2b44c6a6191a02b30661ef0317 to your computer and use it in GitHub Desktop.
Tasks.Extensions.cs
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