3

我不知道为什么会抛出异常,这是工作代码:

DateTime.Parse("1/12/2012 12:00:00 AM")

这是引发异常的一个:

DateTime.Parse("1/13/2012 12:00:00 AM")

抛出的异常是“FormatException”,包含在此消息中: “字符串未被识别为有效的 DateTime。”

这是 CurrentCulture 值:

System.Globalization.CultureInfo.CurrentCulture
{en-MY}
Calendar: {System.Globalization.GregorianCalendar}
CompareInfo: {CompareInfo - en-MY}
CultureTypes: SpecificCultures | InstalledWin32Cultures
DateTimeFormat: {System.Globalization.DateTimeFormatInfo}
DisplayName: "English (Malaysia)"
EnglishName: "English (Malaysia)"
IetfLanguageTag: "en-MY"
IsNeutralCulture: false
IsReadOnly: true
KeyboardLayoutId: 17417
LCID: 17417
Name: "en-MY"
NativeName: "English (Malaysia)"
NumberFormat: {System.Globalization.NumberFormatInfo}
OptionalCalendars: {System.Globalization.Calendar[2]}
Parent: {en}
TextInfo: {TextInfo - en-MY}
ThreeLetterISOLanguageName: "eng"
ThreeLetterWindowsLanguageName: "ENM"
TwoLetterISOLanguageName: "en"
UseUserOverride: true

有人知道这里发生了什么吗?

4

1 回答 1

14

因为一年只有 12 个月 ;)

我猜您当前的文化设置使用“dd/MM/yyyy”。使用 Parse 的重载指定要用于解析字符串的区域性日期格式:

DateTime.Parse(String, IFormatProvider) 

或使用 ParseExact() 方法并自己指定格式。

var provider = CultureInfo.InvariantCulture;
var format = "M/dd/yyyy hh:mm:ss tt";

DateTime.ParseExact("1/13/2012 12:00:00 AM", format, provider);
于 2012-01-31T06:08:45.913 回答