I want to convert the date "01/22/2013 10:00:00" to "22/01/2013 10:00:00" and my method doesn't recognise my date string.
DateTime dt = DateTime.ParseExact(StartDate, "MM dd yyyy h:mm", CultureInfo.InvariantCulture);
StartDate = dt.ToString("dd/M/yyyy");
dt = DateTime.ParseExact(EndDate, "MMM dd yyyy h:mm", CultureInfo.InvariantCulture);
EndDate = dt.ToString("dd/M/yyyy");
I am getting system.formatexception - string was not recognized as a valid datetime.
What is the correct string format for parseexact? Thanks.
MM/dd/yyyy HH:mm:sseven without looking at the documentation. – Jon Feb 5 at 9:45