Created
May 9, 2017 08:27
-
-
Save lisardggY/396aaca7b70da1bbc4d1640e262e990a to your computer and use it in GitHub Desktop.
Mark Task as fire-and-forget
This file contains 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
/// <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