问题
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