Introduction
In C#, we can use the DateTime struct to perform date and time-related operations. DateTime can be instantiated by different methods.
Note. I have documented this article on 13-05-2018 (May 13, 2018). Hence, this date value will be used throughout.
To get today’s date, use DateTime.Now.
You can pass Year, Month, and Date as parameters, which creates an assigned date with time as 12 AM.
To create a date with a specified time, pass Hour, Minute, and Seconds in addition to the above parameters. Time will be in a 24-hour format.
To assign a maximum date and time range.

Display DateTime Object
You can display the DateTime object as simply as.
It is recommended to always use the ToString() method to display the Date.
![display date time]()
To Display Year, Month, Date, Hour, Minute, Second
Note. To display today's date only without month and year, use “Day” as the date and it will return the assigned date value and reset time to 12 AM.
![C#]()
To Display Short Version of Date. Ex: 13-05-2018
To Display Long Version of Date. Ex: 13 May 2018
To Display Short Version of Time. Ex: 13:00
To Display Long Version of Time. Ex: 13:00:00
![C#]()
Here is a detailed tutorial, DateTime In C#.