gpt4 book ai didi

.net - CurrentCulture、InvariantCulture、CurrentUICulture 和 InstalledUICulture 之间的区别

转载 作者:行者123 更新时间:2023-12-04 22:40:09 26 4
gpt4 key购买 nike

CurrentCulture有什么区别, InvariantCulture , CurrentUICultureInstalledUICulture来自 System.Globalization.CultureInfo ?

最佳答案

我会尝试给出比 this one 更有见地的答案。

CurrentCulture 应该用于格式化。也就是说,数字、货币、百分比、日期和时间在向用户显示之前应始终使用这种文化进行格式化。这里的几个例子:

const string CURRENCY_FORMAT = "c";
const string PERCENTAGE_FORMAT = "p";

DateTime now = DateTime.UtcNow; // all dates should be kept in UTC internally
// convert time to local and format appropriately for end user
dateLabel.Text = now.ToLocalTime().ToString(CultureInfo.CurrentCulture);

float someFloat = 12.3456f;
// yields 12,3456 for pl-PL Culture
floatLabel.Text = someFloat.ToString(CultureInfo.CurrentCulture);
// yields 12,35 zł for pl-PL Culture - rounding takes place!
currencyLabel.Text = someFloat.ToString(CURRENCY_FORMAT, CultureInfo.CurrentCulture);
// yields 1234,56% for pl-PL Culture - 1.0f is 100%
percentageLabel.Text = someFloat.ToString(PERCENTAGE_FORMAT, CultureInfo.CurrentCulture);

需要注意的一件重要事情是,您首先不应该使用 floatdouble 来存储货币相关信息( decimal 是正确的选择)。 CurrentCulture 的另一个常见用例是 Locale-aware 解析。您的应用程序应始终允许用户以其区域格式提供输入:
float parsedFloat;
if (float.TryParse(inputBox.Text, NumberStyles.Float, CultureInfo.CurrentCulture, out parsedFloat))
{
MessageBox.Show(parsedFloat.ToString(CultureInfo.CurrentCulture), "Success at last!");
}

请注意,我总是提供 IFormatProvider 参数,尽管它被暗示并假定为 CultureInfo.CurrentCulture 。这样做的原因是,我想与其他开发人员交流:这是将向最终用户显示的内容。这就是 FxCop 将忽略此参数视为错误的原因之一。

另一方面, InvariantCulture 应该用于将上述类中的一个可靠地转换为其文本表示。因此,例如,如果您想通过网络传输 DateTimefloatdouble 或类似对象,将其存储到数据库或某种文本文件(包括 XML),则应始终使用 InvariantCulture :
float someFloat = 1234.56f;
// yields 1234.56
string internalFloat = someFloat.ToString(CultureInfo.InvariantCulture);
DateTime now = DateTime.UtcNow;
// yields something like 04/16/2011 19:02:46
string internalDateAndTime = now.ToString(CultureInfo.InvariantCulture);

这里需要注意的是, InvariantCulture 提供的日期/时间格式实际上与 en-US 完全相同。虽然它是可靠的,但它并不完全正确。真正应该使用的是 ISO8601 Interchangeable Date & Time Format 。出于某种原因,微软甚至没有提供这样的模式(最接近的是可排序模式 - “s”和通用模式 - “u”,它只类似于 ISO8601 格式),你需要像这样创建自己的:
const string iso8601Pattern = "yyyy-MM-dd'T'HH:mm:ss'Z'";
string iso8601Formatted = now.ToString(iso8601Pattern);

非常重要的旁注: IFormatProvider 实际上是 required 此处省略此参数可能会导致严重错误。我曾经不得不修复法语操作系统上的一个缺陷。代码是这样的:
float dbVersion = // some kind of logic that took float from database
string versionString = dbVersion.ToString(); // culture-aware formatting used
Version ver = new Version(versionString); // exception thrown here

原因很简单:在法语操作系统上格式化的浮点数(使用法语区域格式)被格式化为类似 10,5 的格式,并且 Version 类需要文化不变的输入。

CurrentUICulture 负责为您的应用程序加载适当的可翻译资源。也就是说,它应该用于显示正确的文本消息、颜色和图像。
在 Asp.Net 应用程序中,如果您出于某种原因想要实现 CSS 本地化机制(能够覆盖每种语言的 CSS 定义), CurrentUICulture 是不错的选择(前提是您实际上是从 Web 浏览器读取此属性的)。
同样,如果您想实现语言切换机制,则应该覆盖 CurrentUICulture

已安装的 UICulture 连接到默认操作系统 UI 区域设置。正如 MSDN 所说:

This property is the equivalent of GetSystemDefaultUILanguage in the Windows API.



要真正理解这个属性是什么,我们需要深入研究一些理论。有不同的 Windows 产品线:
  • 单一语言(即英语、法语、德语、日语等)
  • MUI(即多语言用户界面 - 英文基础操作系统和语言包)

  • 对于单语言产品线,InstalledUICulture 将始终返回操作系统语言,而对于 MUI,它应始终返回英语(美国)又名 en-US。有用吗?我不知道,我从来不需要这样的信息。我个人还没有看到利用此属性的程序。

    关于.net - CurrentCulture、InvariantCulture、CurrentUICulture 和 InstalledUICulture 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5060446/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com