vote up 3 vote down star

I was playing around with the Datetime.ParseExact method, and it wants an iformatprovider..

It works inputting null, but what exactly does it do?

Thanks :)

flag

75% accept rate

5 Answers

vote up 1 vote down check

IFormatProvider provides culture info to the method in question. DateTimeFormatInfo implements IFormatProvider, and allows you to specify the format you want your date/time to be displayed in. Examples can be found on the relevant MSDN pages.

link|flag
vote up 0 vote down

Also CultureInfo implements this interface and can be used in your case. So you could parse a French date string for example; you could use

var ci = new CultureInfo("fr-FR");
DateTime dt = DateTime.Parse(yourDateInputString, yourFormatString, ci);
link|flag
vote up 1 vote down

The DateTimeFormatInfo class implements this interface, so it allows you to control the formatting of your DateTime strings.

link|flag
vote up 2 vote down

Check http://msdn.microsoft.com/en-us/library/system.iformatprovider.aspx for the API.

link|flag
vote up 4 vote down

You can see here http://msdn.microsoft.com/en-us/library/system.iformatprovider.aspx

See the remarks and example section there.

link|flag

Your Answer

Get an OpenID
or

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