Created
August 8, 2018 07:27
-
-
Save SamKr/2ff8add277659c64ff1d39183bc9e99b to your computer and use it in GitHub Desktop.
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
var start = new TimeSpan(2, 45, 0); | |
var end = new TimeSpan(4, 0, 0); | |
var now = DateTime.Now.TimeOfDay; | |
if ((now > start) && (now < end)) | |
{ | |
return; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment