Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created August 11, 2020 21: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 jbogard/156e0d4341621ae57db1ad03840087d3 to your computer and use it in GitHub Desktop.
Save jbogard/156e0d4341621ae57db1ad03840087d3 to your computer and use it in GitHub Desktop.
private static IEnumerable<DateTime> AllMondaysInJune2020 { get {
yield return new DateTime(2020, 6, 1);
yield return new DateTime(2020, 6, 8);
yield return new DateTime(2020, 6, 15);
yield return new DateTime(2020, 6, 22);
yield return new DateTime(2020, 6, 29);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment