博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Get All Cultures in .Net
阅读量:6508 次
发布时间:2019-06-24

本文共 948 字,大约阅读时间需要 3 分钟。

This example shows how to get all culture names in the .NET Framework. Use static method . To get associated specific culture use static method .

Following code is modified MSDN example (it's just sorted by culture name).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// get culture names
List<
string
> list =
new 
List<
string
>();
foreach 
(CultureInfo ci
in 
CultureInfo.GetCultures(CultureTypes.AllCultures))
{
  
string 
specName =
"(none)"
;
  
try 
{ specName = CultureInfo.CreateSpecificCulture(ci.Name).Name; }
catch 
{ }
  
list.Add(String.Format(
"{0,-12}{1,-12}{2}"
, ci.Name, specName, ci.EnglishName));
}
 
list.Sort(); 
// sort by name
 
// write to console
Console.WriteLine(
"CULTURE   SPEC.CULTURE  ENGLISH NAME"
);
Console.WriteLine(
"--------------------------------------------------------------"
);
foreach 
(
string 
str
in 
list)
  
Console.WriteLine(str);
本文转自敏捷的水博客园博客,原文链接http://www.cnblogs.com/cnblogsfans/archive/2010/03/25/1694988.html如需转载请自行联系原作者
王德水
 
你可能感兴趣的文章
Chrome浏览器查看cookie
查看>>
2015年热门的国产开源软件TOP 50
查看>>
7 -- Spring的基本用法 -- 12... Spring 3.0 提供的表达式语言(SpEL)
查看>>
nginx反向代理架构与安装配置(一)
查看>>
Linux下 ln 命令详解
查看>>
jquery点击回到页面顶部方法
查看>>
中文转拼音without CJK
查看>>
js-权威指南学习笔记19.2
查看>>
Vue初探
查看>>
【MongoDB】从入门到精通mongdb系列学习宝典,想学mongodb小伙伴请进来
查看>>
老毛桃PE修改方法(屏蔽更改主页,屏蔽加装的绿色浏览器)
查看>>
HBase入门基础教程 HBase之单机模式与伪分布式模式安装
查看>>
禁止光盘优盘自动播放(Shell Hardware Detection服务)
查看>>
算法笔记_052:蓝桥杯练习Multithreading(Java)
查看>>
Discuz! X2.5RC 全新安装图文教程
查看>>
替换值
查看>>
java的PDF纵横向打印
查看>>
基于 html5的 jquery 轮播插件 flickerplate
查看>>
犀牛Phinoceros 如何切换中文语言
查看>>
Python之Seaborn
查看>>