Answers for "check if current time is in the morning c#"

C#
1

check if current time is in the morning c#

TimeSpan time = DateTime.Now.TimeOfDay;

if (time > new TimeSpan(00, 00, 01)        //Hours, Minutes, Seconds
 && time < new TimeSpan(08, 00, 00)) {
    //match found
}
Posted by: Guest on June-22-2020

C# Answers by Framework

Browse Popular Code Answers by Language