我已经创建了一个C#WinForms应用程序。
在我的电脑上,以下作品:
DateTime.ParseExact("13/05/2012", "dd/mm/yyyy", null)
但这不是:
DateTime.Parse("13/05/2012")
在我客户的计算机上,它已被颠倒过来。这有效:
DateTime.Parse("13/05/2012")
但这不是:
DateTime.ParseExact("13/05/2012", "dd/mm/yyyy", null)
错误说明:
String was not recognized as a valid DateTime.
无法在互联网上找到有关此问题的任何信息。该程序使用.Net Framework 4,是一个x86应用程序。我运行Windows 8 x64,客户端运行Windows 7 x64。
有没有人知道为什么会这样?
感谢。
答案 0 :(得分:12)
您在不同计算机上获得不同行为的原因是因为它们运行的文化不同。尝试在两台计算机上运行这行代码,看看它是否输出了不同的代码:(ideone)
System.Console.WriteLine(CultureInfo.CurrentCulture);
输出(示例):
en-US
文化指定了许多东西,其中一个是日期分隔符。如果您希望所有用户都保持一致的行为,请尝试指定文化:(ideone)
CultureInfo cultureInfo = CultureInfo.InvariantCulture; // or whatever you prefer
DateTime dateTime = DateTime.ParseExact("13/05/2012", "dd/MM/yyyy", cultureInfo);
上面的代码假设你有这些使用语句:
using System;
using System.Globalization;
答案 1 :(得分:11)
小心;在custom date and time format strings中,mm
说明符代表“分钟”,而不是“月”。您需要使用MM
几个月。
DateTime.ParseExact("13/05/2012", "dd/MM/yyyy", CultureInfo.InvariantCulture)