How to check if a DateTime occurs today?

后端 未结 13 1269
故里飘歌
故里飘歌 2020-12-08 18:01

Is there a better .net way to check if a DateTime has occured \'today\' then the code below?

if ( newsStory.WhenAdded.Day == DateTime.Now.Day &&
             


        
13条回答
  •  鱼传尺愫
    2020-12-08 18:31

    Try

    if (newsStory.Date == DateTime.Now.Date) 
    { /* Story happened today */ }
    else
    { /* Story didn't happen today */ }
    

提交回复
热议问题