I am trying to parse a french date to a DateTime object with no luck so far. Is there a way? to do that.
String foo = "mar, 20 avr 2010 09:00:00 -0500";
I've Already tried parsing with a different culture and changing the culture of the thread.
System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-CA",true);
CultureInfo culture = new CultureInfo("fr-CA",true);
DateTime.Parse(foo,culture,DateTimeStyles.AdjustToUniversal);