gpt4 book ai didi

c# - 如何设置 CultureInfo.CurrentCulture?

转载 作者:太空狗 更新时间:2023-10-29 22:22:36 25 4
gpt4 key购买 nike

使用:

Console.WriteLine(System.Globalization.CultureInfo.CurrentCulture.ToString());

我得到 “en-US”

我应该在我的控制面板设置(区域和语言)中更改什么以获得其他内容,例如 "en-CA"

最佳答案

What should I change in my control panel settings ( Region and Language ? ) to get something else for example "en-CA" .

您可以为当前线程更改它,例如:

System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("en-CA");

然后:

Console.WriteLine(System.Globalization.CultureInfo.CurrentCulture.ToString());

会返回:

en-CA

关于c# - 如何设置 CultureInfo.CurrentCulture?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21315761/

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