访问CultureInfo设置(区域设置)

本文关键字:设置 区域 访问 CultureInfo | 更新日期: 2023-09-27 18:00:59

如果我在Global.asax中设置用户的区域性信息,使得strCulture是区域设置"en-US":

System.Threading.Thread.CurrentThread.CurrentCulture
    = new System.Globalization.CultureInfo(strCulture);
System.Threading.Thread.CurrentThread.CurrentUICulture
    = new System.Globalization.CultureInfo(strCulture);

那么我如何访问我在应用程序中其他地方设置的区域性(登录后(?

谢谢。

访问CultureInfo设置(区域设置)

在发布这篇文章之前,我也花了很多时间,但正如Peter之前在评论中提到的,我真的无法想出比使用CurrentUICulture更好的方法。

CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;

如果这不是您想要的,请给我们更多信息。:(