I am able to get date and time using:
DateTime now = DateTime.Now;
How can I get the current date and time separately in the DateTime format itself?
I am not using the DateTime picker dialog box in ASP.NET (C#).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, you can get just today’s date as a
DateTimeusing theTodayproperty:or more generally, you can use the
Dateproperty. For example, if you wanted the UTC date you could use:It’s not very clear whether that’s what you need or not though… if you’re just looking to print the date, you can use:
or use an explicit format:
See more about standard and custom date/time format strings. Depending on your situation you may also want to specify the culture.
If you want a more expressive date/time API which allows you to talk about dates separately from times, you might want to look at the Noda Time project which I started. It’s not ready for production just yet, but we’d love to hear what you’d like to do with it…