有没有一种方法可以自动生成一个文件,该文件可以执行线程安全的、特定于区域性的资源访问?Visual Studio为我的resx文件生成的当前Resource.Designer.cs类如下:
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resource()
{
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager
{
get
{
if (object.ReferenceEquals(resourceMan, null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ServiceModels.Resource", typeof(Resource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Hiii.
/// </summary>
public static string Hello
{
get
{
return ResourceManager.GetString("Hello", resourceCulture);
}
}
这允许安全访问"Hello"资源,但在使用不同区域性的不同资源文件时,它似乎不是线程安全的。例如,使用此代码,您可以通过设置资源
Culture = CultureInfo.SomeCulture;
这将为使用ResourceManager的所有线程设置区域性。有没有一种方法可以自动生成一个允许线程安全、特定于区域性的资源访问的文件,或者我必须自己实现一种方法?
Thread.CurrentThread.CurrentCulture
是一个特定于线程的Culture
设置,大多数库都使用它来格式化日期/时间或数字,并在您的情况下用于获取翻译的字符串。
https://learn.microsoft.com/en-us/dotnet/api/system.globalization.cultureinfo.currentculture?view=netframework-4.8