Xarzu Posted September 22, 2011 Share Posted September 22, 2011 How do I get a dattime format in C# that will look like this: 2011-09-01 00:00:00:000 Link to comment Share on other sites More sharing options...
Gorth Posted September 22, 2011 Share Posted September 22, 2011 I haven't actually tried it (yet), but something like this? String.Format("{0:yyyy/MM/dd HH:mm:ss}", dt); That's assuming we are talking about 1st of September (Americans use have date and month the other way around). The '/' character is depending on your language/regional setting. Edit to add: Found this suggestion String.Format("{0:u}", dt); // "2008-03-09 16:05:07Z" UniversalSortableDateTime “He who joyfully marches to music in rank and file has already earned my contempt. He has been given a large brain by mistake, since for him the spinal cord would surely suffice.” - Albert Einstein Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now