Dave P. <(E-Mail Removed)> wrote:
> I'm trying to parse a string into a DateTime object. I
> want to try using ParseExact to see if I can improve
> performance of a frequently-called method (i.e., please
> don't suggest using Parse()). My code looks like this:
>
> IFormatProvider fp = new System.Globalization.CultureInfo
> ("en-US");
> DateTime dt = DateTime.ParseExact("Mar 9, 2005", "MMM d,
> yyyy", fp);
>
> This throws an exception in MatchAbbreviatedMonthName()
> (an FCL method). If I look at the CultureInfo object,
> there is, in fact, a month called "Mar".
>
> How can I use my custom format with ParseExact?
Like Nathan, it works for me. What exception is thrown? Have you tried
searching for it on Google?
--
Jon Skeet - <(E-Mail Removed)>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too