我正在使用该TimeSpan.ParseExact
方法来解析时间跨度。但是,为什么以下失败并抛出异常?
string time = "23:10:00";
string format = "HH:mm:ss";
TimeSpan timeSpan = TimeSpan.ParseExact(time, format, CultureInfo.InvariantCulture);
从 MSDN 上的Custom Date and Time Format Strings文章来看,这个输入字符串的格式是正确的。有任何想法吗?