查找当前时间是否在某个时间范围内
使用.NET 3.5
到目前为止,我有currentime:
DateTime currentTime = new DateTime();currentTime.TimeOfDay;
我正在研究如何转换和比较时间范围。这行得通吗?
if (Convert.ToDateTime("11:59") <= currentTime.TimeOfDay && Convert.ToDateTime("13:01") >= currentTime.TimeOfDay)
{
//match found
}
UPDATE1:谢谢大家的建议。我不熟悉TimeSpan函数。
回答:
要检查一天中的时间,请使用:
TimeSpan start = new TimeSpan(10, 0, 0); //10 o'clockTimeSpan end = new TimeSpan(12, 0, 0); //12 o'clock
TimeSpan now = DateTime.Now.TimeOfDay;
if ((now > start) && (now < end))
{
//match found
}
对于绝对时间,请使用:
DateTime start = new DateTime(2009, 12, 9, 10, 0, 0)); //10 o'clockDateTime end = new DateTime(2009, 12, 10, 12, 0, 0)); //12 o'clock
DateTime now = DateTime.Now;
if ((now > start) && (now < end))
{
//match found
}
以上是 查找当前时间是否在某个时间范围内 的全部内容, 来源链接: utcz.com/qa/422650.html