check if current time is in the morning csharp

Code Example - check if current time is in the morning csharp

                
                        TimeSpan time = DateTime.Now.TimeOfDay;

if (time > new TimeSpan(00, 00, 01)        //Hours, Minutes, Seconds
 && time < new TimeSpan(08, 00, 00)) {
    //match found
}