Instance is read-only Exception while changing culture in asp.net

空扰寡人 提交于 2021-01-29 05:48:01

问题


I try to implement multicultural application where users able to change language, date format and etc. I wrote core but it returns Exception: System.InvalidOperationException: Instance is read-only.

switch (culture)
    {
        case SystemCulture.English:
                Thread.CurrentThread.CurrentCulture = new CultureInfo(CultureCodes.English);
                Thread.CurrentThread.CurrentUICulture = new CultureInfo(CultureCodes.English);
                break;
                        //another cultures here
    }
    switch (cultureFormat)
    {
        case SystemDateFormat.European:
                  var europeanDateFormat = CultureInfo.GetCultureInfo(CultureCodes.Italian).DateTimeFormat;
                  Thread.CurrentThread.CurrentCulture.DateTimeFormat = europeanDateFormat;
                  Thread.CurrentThread.CurrentUICulture.DateTimeFormat = europeanDateFormat;
                  break;
    //another cultures here
    }
        

I found some information on internet and i have to use new instance object of my culture, i changed my code just adding:

CultureInfo myCulture;

switch (culture)
{
       case SystemCulture.English:
            myCulture= new CultureInfo(CultureCodes.English);
            break;
}

and bellow, out of switch :

Thread.CurrentThread.CurrentCulture = cultureInfo;

I'm not familiar with Threads and i'm not sure if i used is correctly. Could you please suggest me how to do this it right way ?


回答1:


You get the Instance is read-only error because you are trying to alter a property on a a read-only culture, via the code below.

Thread.CurrentThread.CurrentCulture.DateTimeFormat = europeanDateFormat;

You can check whether a culture is readonly via its IsReadOnly property; the built-in ones are.

Instead, you must make a clone/copy of the currently active culture, apply any changes on that clone and assign that one to the CurrentCulture and/or CurrentUICulture of the current thread.

var clone = Thread.CurrentThread.CurrentCulture.Clone() as CultureInfo;
clone.DateTimeFormat = CultureInfo.GetCultureInfo("it").DateTimeFormat;

Thread.CurrentThread.CurrentCulture = clone;
Thread.CurrentThread.CurrentUICulture = clone; 


来源:https://stackoverflow.com/questions/56899198/instance-is-read-only-exception-while-changing-culture-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!