DateTime.Today
This returns just the day—without the time. This is different from DateTime.Now
, which returns as much information as it can.
The Today property returns a DateTime
struct
with the hour, minutes and seconds set to zero. Today is the same as the Now property. But it has no time part.
This program gets the current day (with Today) and the current time (with Now). The program was executed in the early afternoon, but Today is still set to midnight.
using System; class Program { static void Main() { DateTime today = DateTime.Today; DateTime now = DateTime.Now; Console.WriteLine(today); Console.WriteLine(now); } }6/23/2022 12:00:00 AM 6/23/2022 6:23:42 AM
Today is useful if you need to determine whether a piece of data was updated today or not. In this case, you can test the data against DateTime.Today
.
We used the DateTime.Today
property, which has an important difference from DateTime.Now
. It contains no values other than the current day.
This makes it useful for sorting and filtering tasks, or when you simply don't need the time. You can get DateTime.Today
from DateTime.Now
on your own—remove the hours, minutes and seconds.