I'm working with a spec that calls for a peculiar Datetime format that I haven't necessarily had to work with yet.

At Process time, an OFX (1 not 2) datetime must be stamped (either DTCLIENT or DTSERVER) in a format like this:
20071015021529.000

however, in the examples it is shown:

20071015021529.000[-8:PST]

I don't have a problem with the first one using a statement of

DateTime.Now.ToString("yyyyMMddHHmmss.fff")

I can even figure out how to get %z to get the correct offset.

The three letter timezone code is where I'm tripping up. Is there an easy way to get this in .net, or am I going to end up writing code to output and parse what I need?

link|improve this question

@Jon Skeet You know, just in looking at the ofx data I can download from my current online banking site, I would say that converting to GMT and flushing it to the client for each DT entity is the common practice. @Mahin I have taken a look at the TimeZoneInfo and I think if I have to implement a client for this data, I will use it along with the GMT. @Daniel Pryden I think having the client's locale process and present the Universal Time stamp from the server is best. Thanks to all for the input! – fauxtrot Oct 6 '09 at 20:36
feedback

3 Answers

up vote 1 down vote accepted

You need to find out exactly which 3 letter codes it needs. What would Europe/Paris give, for example? Personally, I'd convert the data to UTC and format it that way, unless you actually need to preserve the time zone information.

link|improve this answer
feedback

The three-letter time zone codes are not unique across countries and are not completely standardized. For example, "CST" can be the abbreviation for "Central Standard Time (USA)" or "Chinese Standard Time". Which is correct depends on your locale.

To my knowledge, there is no functionality built into the .NET Framework to look up codes like this, so you will need to implement it yourself.

Additionally (but you probably know this), you need to be careful about how you implement this functionality. There is not necessarily a one-to-one correspondence between UTC offsets and time zone codes. For example, UTC-0700 could be either US Mountain Standard Time (MST) or US Pacific Daylight Time (PDT).

link|improve this answer
feedback

If you will use r it will give you RFC format. Will it help you.

String.Format("{0:r}", dt);  // "Sun, 09 Mar 2008 16:05:07 GMT"   RFC1123

You can also check this SO link, if it can help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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