vote up 3 vote down star
3

Hey guys,

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

flag

80% accept rate
Have you stepped through the code and completed a "QuickWatch" on that DateTime.Now.ToString()? – Tacoman667 Apr 24 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 at 13:18

4 Answers

vote up 13 vote down check

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|flag
vote up 3 vote down

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|flag
vote up 1 vote down

check out my question's answer.

link|flag
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 at 13:20
Actually, 'ignore' in my previous comment was wrong. Translate back to '/' would be more accurate – Joel Coehoorn Apr 24 at 13:23
vote up 1 vote down

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

string date = yourDate.ToString("MM/dd/yyyy", CultureInfo.InvariantCulture));
link|flag

Your Answer

Get an OpenID
or

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