我正在尝试解析以下英国格式DateTime
字符串:24/01/2013 22:00
但是,我不断收到此错误:
字符串未被识别为有效的日期时间。
CultureInfo.CurrentCulture
返回en-GB
正确的“”
这是我的代码
[TestMethod]
public void TestDateTimeParse()
{
DateTime tester = DateTime.ParseExact("24/01/2013 22:00", "d/M/yyyy hh:mm", CultureInfo.CurrentCulture);
int hours = tester.Hour;
int minutes = tester.Minute;
Assert.IsTrue(true);
}