Click here to Skip to main content
15,889,034 members
Articles / Desktop Programming / Windows Forms

how to get the full date from DateTime in windows application

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
9 Oct 2012CPOL 0  
Hi,take a look at DateTime.ToLongDateString() and ToLongTimeStamp()DateTime d = DateTime.Now;string s = d.ToLongDateString() + " " + d.ToLongTimeString();In en-US it will result inWednesday, October 10, 2012 7:44:40 AMand in de-DE it will result in Mittwoch, 10. Oktober...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
Years ago I programmed COM-DLLs in C/C++ for some VB6 guys. It was a remote service and alarming software for refrigeration systems.

Also developed software in WinCE (C/C++) for a remote gateway to connect to the refrigeration controllers via CAN-Bus.

Since 2009 more and more C# and .Net development.

Actually developer for intra logistic software.

Currently dominated by huge spaghetti code monster :-/

Comments and Discussions