我有一些来自 XML 文档的数据,例如 2012-12-06T24:00。
问题是当我尝试转换它时:24:00 不存在。所以 :
DateTime.Parse(myDateTimeString).Hour
给我这个例外:System.FormatException: The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar.
我该如何解决?
我想到的解决方案是用T00替换(字符串)T24,这看起来很可怕......