我有整数值,如 06,07,08,.....,16,17,18,...
我想将此整数值转换为 24 小时时间格式。
我正在做这样的事情
//fromTime holds one of the integer value.
DateTime fromTimeDate = DateTime.ParseExact(fromTime.ToString(),
"HH",
CultureInfo.InvariantCulture);
string fromtimestring = fromTimeDate.ToString("hh:mm tt");
但它给出了错误
“字符串未被识别为有效的日期时间。”
解析时。
我在这里做错了什么。?