Created
July 26, 2013 22:14
-
-
Save codereflection/6092622 to your computer and use it in GitHub Desktop.
NullTask
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
/// <summary> | |
/// NullTask is a task that does nothing in Null Object Pattern fashion | |
/// </summary> | |
public class NullTask : Task | |
{ | |
public NullTask() : base(() => { }) { } | |
} |
Buildstarted
commented
Jul 27, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment