C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
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.
Example. 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. Today is the same as the Now property. But it has no time.
Tip: This program was run on a specific date. When you run it on your computer, the time will differ.
C# program that uses DateTime.Today using System; class Program { static void Main() { DateTime today = DateTime.Today; DateTime now = DateTime.Now; Console.WriteLine(today); Console.WriteLine(now); } } Output 2/25/2014 12:00:00 AM 2/25/2014 1:29:21 PM
Usage. Today is useful if you need to use a range of DateTimes starting on the current day. You could determine whether a piece of data was updated today or not by testing it against DateTime.Today.
Summary. 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.
Note: You can get DateTime.Today from DateTime.Now on your own as well. Simply remove the hours, minutes and seconds.