Skip to content

Instantly share code, notes, and snippets.

@lisardggY
Created May 9, 2017 08:27
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 lisardggY/396aaca7b70da1bbc4d1640e262e990a to your computer and use it in GitHub Desktop.
Save lisardggY/396aaca7b70da1bbc4d1640e262e990a to your computer and use it in GitHub Desktop.
Mark Task as fire-and-forget
/// <summary>
/// Signals the compiler that this task should be allowed to run independently.
/// </summary>
/// <param name="task"></param>
public static void Release(this Task task)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment