up vote 7 down vote favorite
3
share [g+] share [fb]

I experiencing a strange behavior of C#. Its some thing like this..

var date = DateTime.Now.ToString("MM/dd/yyyy");

I expecting out to be

04/24/2009

but in actuall its returning

04-24-2009

and my OS culture is en-GB, I'm using .Net 3.5 and WPF

any solutions please... ???

link|improve this question

69% accept rate
Have you stepped through the code and completed a "QuickWatch" on that DateTime.Now.ToString()? – Tacoman667 Apr 24 '09 at 13:17
If you're using "en-GB" you should be using a date format of "dd/MM/yyyy". For US date formats of "MM/dd/yyyy" you should be using "en-US". – JeeBee Apr 24 '09 at 13:18
feedback

4 Answers

up vote 16 down vote accepted

According to the MSDN docs for custom date and time format strings, / is a placeholder:

Represents the date separator defined in the current DateTimeFormatInfo.DateSeparator property. This separator is used to differentiate years, months, and days.

If you want a definite slash, use "MM'/'dd'/'yyyy":

DateTime.Now.ToString("MM'/'dd'/'yyyy")
link|improve this answer
feedback

It uses the separator set up in the regional settings, since "/" is the substitute character for the separator.

You can create your own DateTimeFormat instance with different separators.

link|improve this answer
feedback

Try calling ToString on the date itself and passing the CultureInfo.InvariantCulture object:

string date = yourDate.ToString("MM/dd/yyyy", CultureInfo.InvariantCulture));
link|improve this answer
feedback

check out my question's answer.

link|improve this answer
2  
Summary: the '/' character is a special token that means 'culture-specific separator'. Manually specify the invariant culture to make .Net ignore that. – Joel Coehoorn Apr 24 '09 at 13:20
Actually, 'ignore' in my previous comment was wrong. Translate back to '/' would be more accurate – Joel Coehoorn Apr 24 '09 at 13:23
feedback

Your Answer

 
or
required, but never shown

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