vote up 0 vote down star

is there a format in ToString() method of DateTime to convert the time Zone to say UTC ?

I know I can programatically first convert the DateTime to UTC and then call ToString, but I have a UI where the user can specify format, can they at the same time convert to UTC ?

flag

3 Answers

vote up 2 vote down

The .ToString("u") will format as UTC but not convert. This code below will convert and present the Date and Time in UTC format:

System.TimeZone.CurrentTimeZone.ToUniversalTime(Date.Now).ToString("u")

or

DateTime.Now.ToUniversalTime().ToString("u")

other formats can be found here

link|flag
vote up 1 vote down

Not built in, but you can create your own formatter (google IFormatProvider)

link|flag
vote up 0 vote down

No, you'll first have to convert the DateTime to the desired time zone.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.