本文介绍了DateTime和的CultureInfo的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这在我的代码:
var date1 = DateTime.ParseExact(date, "dd.MM.yyyy HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture);
而当我目前的文化性是荷兰( NL-NL $ C 。$ C>),而不是5月1日我得到的1月5日
And when my current cultur is dutch (nl-NL
) instead of May 1st I get January 5th.
我认为错误是在第二个参数 DD.MM.YYYY HH: MM:SS
I think the error is in the second parameter dd.MM.yyyy HH:mm:ss
.
有没有办法来解决这个使用的CultureInfo
类?
Is there a way to fix this using the CultureInfo
class?
推荐答案
您可以尝试以下操作:
System.Globalization.CultureInfo cultureinfo =
new System.Globalization.CultureInfo("nl-NL");
DateTime dt = DateTime.Parse(date, cultureinfo);
这篇关于DateTime和的CultureInfo的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!