当我尝试在我的应用程序中初始化CultureInfo
时,我收到了异常。
以下是我正在使用的代码:
public void SetLanguage(string cultureCode)
{
if (string.IsNullOrEmpty(cultureCode))
{
_cultureInfo = new CultureInfo("en");
}
else
{
_cultureInfo = new CultureInfo(cultureCode);
}
}
我正在尝试为"no"
文化代码创建文化信息,但我得到例外PlateformNotSupported
,因为它无法创建CompareCulture
,DateTimeFormat
以下是例外:
System.Globalization.CultureInfo.Check Neutral(CultureInfo culture) System.Globalization.CultureInfo.get_DateTimeFormat()
这里缺少什么,任何想法都会受到关注?