Skip to content

Instantly share code, notes, and snippets.

@darrelmiller
Created March 25, 2014 13:57
Show Gist options
  • Save darrelmiller/9762387 to your computer and use it in GitHub Desktop.
Save darrelmiller/9762387 to your computer and use it in GitHub Desktop.
public static class TaskHelper
{
public static Task<T> RunWithCancel<T>(Func<CancellationToken,T> function, CancellationToken token)
{
return Task.Run(() => function(token),token);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment