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 &&
if (newsStory.ToShortDateString() == DateTime.Today.ToShortDateString()) return "Todtay";