Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 21, 2019 04:59
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 IntegerMan/e1268baa9131a68de365456512bad1e8 to your computer and use it in GitHub Desktop.
Save IntegerMan/e1268baa9131a68de365456512bad1e8 to your computer and use it in GitHub Desktop.
public class OnlyOnWeekends : IFeatureToggle
{
public bool FeatureEnabled
{
get
{
switch (DateTime.Today.DayOfWeek)
{
case DayOfWeek.Saturday:
case DayOfWeek.Sunday:
return true;
default:
return false;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment