I have the following code:
IFormatProvider culture = new System.Globalization.CultureInfo("es-ES", true);
date = DateTime.ParseExact(_date, "yyyy-MM-dd hh:mm", culture);
for _date = “2012-11-17 15:00”
it throws an exception
but for _date = “2012-11-17 10:00” works
Anyone can tell me what I’m doing wrong?
use
HHinstead ofhhHHis for 24-hrhhis for 12-hr