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
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.