I am trying to parse the dates of images using exif data. The date is in this format: "2017:02:04 14:25:38"
Can anyone provide some help on how to properly parse this date time format?
Thank you so much!
var input ="2017:02:04 14:25:38"; var dt = DateTime.ParseExact(input, "yyyy:MM:dd HH:mm:ss", CultureInfo.CurrentCulture);
Thank you.