Hi I am writing a piece of code to find the latest date among a list of dates, the problem is that the date was specified in a string. I convert it to a DateTime object using:
private DateTime DateRetStr(string ss)
{
DateTimeFormatInfo dtfi = new DateTimeFormatInfo();
dtfi.ShortDatePattern = ConfigurationManager.AppSettings["DateTimeFormat"];
dtfi.DateSeparator = ConfigurationManager.AppSettings["DateTimeSeperator"];
DateTime objDate = Convert.ToDateTime(ss, dtfi);
return objDate;
}
right now when i change my computer i need to change the app.config file to the correct date seperator and format else my program crashes. Is there any way to automatically update the app.config file according to the system format?
Thanks