Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created June 16, 2022 13:05
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 lgolubyev/2598e2637e1a21aa5dcd17d3998d52f4 to your computer and use it in GitHub Desktop.
Save lgolubyev/2598e2637e1a21aa5dcd17d3998d52f4 to your computer and use it in GitHub Desktop.
DateTime.Now.DayOfWeek switch
{
not (DayOfWeek.Saturday or DayOfWeek.Sunday) => "Not Weekend",
DayOfWeek.Saturday or DayOfWeek.Sunday => "Weekend",
_ => throw new ArgumentOutOfRangeException()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment