up vote 5 down vote favorite
share [g+] share [fb]

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 :)

link|improve this question

75% accept rate
feedback

5 Answers

up vote 3 down vote accepted

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|improve this answer
feedback

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

See the remarks and example section there.

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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