Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get this datetime format for an RSS feed?

Mon, 06 Sep 2009 16:45:00 +0000
share|improve this question
Can you provide more details? What RSS feed? Where is the date coming from? What do you want to do with it? – Oded Oct 11 '10 at 8:24
i want to display it as xml – mazhar kaunain baig Oct 11 '10 at 8:29
Plz view the example in there – mazhar kaunain baig Oct 11 '10 at 8:30

1 Answer

up vote 1 down vote accepted

I think you want DateTime.Now.ToString("r"),
where the 'r' indicates formatting following the RFC1123 pattern.

It will not (always) display an offset as +000, it will use 'GMT' and other standardized tz names.

As far as I can tell this one of the rare case where you don't have to specify an IFromatProvider.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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