Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么此代码返回 false?这个问题/答案 强烈暗示它应该返回真。
TimeSpan.TryParseExact("04:00:01", "hh:mm:ss", CultureInfo.CurrentCulture, out x);
UsingInvariantCulture也会返回 false 并TimeSpan.ParseExact()引发无效的格式异常。HH:mm:ss是错误的,根据上面的问题。
InvariantCulture
TimeSpan.ParseExact()
HH:mm:ss
如何04:00:01打破格式hh:mm:ss?
04:00:01
hh:mm:ss
用于@"hh\:mm\:ss"您的格式。
@"hh\:mm\:ss"