Jump to content

How do I get a dattime format in C# that will look like this:


Xarzu

Recommended Posts

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...