Get All Cultures in .Net

简介:

This example shows how to get all culture names in the .NET Framework. Use static method CultureInfo.Get Cultures. To get associated specific culture use static method CultureInfo.Cre­ateSpecificCul ture.

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如需转载请自行联系原作者

王德水
 
相关文章
|
3月前
|
API
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
|
6月前
|
JavaScript
GET http://192.168.2.198:8080/sockjs-node/info?t=1626862752216 net::ERR_CONNECTION_TIMED_OUT
GET http://192.168.2.198:8080/sockjs-node/info?t=1626862752216 net::ERR_CONNECTION_TIMED_OUT
73 0
|
11月前
|
JavaScript 前端开发 API
Vue报错:sockjs.js?9be2:1627 GET http://192.168.43.88:8080/sockjs-node/info?t=1631603986586 net::ERR_CO
Vue报错:sockjs.js?9be2:1627 GET http://192.168.43.88:8080/sockjs-node/info?t=1631603986586 net::ERR_CO
|
开发框架 监控 算法
.NET开源5年了,这些宝藏你还没get?
.NET开源5年了,这些宝藏你还没get?
242 0
.NET开源5年了,这些宝藏你还没get?
|
NoSQL Java Redis
Spring框架(SpringBoot)中redis报错(Could not get a resource from the pool、java.net.SocketTimeoutException)
Spring框架(SpringBoot)中redis报错 在使用SpringBoot框架的时候,Spring一直会报两个特别纠结特别的烦的错误。
10092 2
|
XML .NET API
用ASP.NET Core 2.0 建立规范的 REST API -- GET 和 POST
本文所需的一些预备知识可以看这里: http://www.cnblogs.com/cgzl/p/9010978.html 和 http://www.cnblogs.com/cgzl/p/9019314.
1367 0
|
Web App开发 JSON .NET
ASP.NET Web API(一):使用初探,GET和POST数据
概述 REST(Representational State Transfer表述性状态转移)而产生的REST API的讨论越来越多,微软在ASP.NET中也添加了Web API的功能。 我们看dudu的文章HttpClient + ASP.NET Web API, WCF之外的另一个选择知道了博客园也开始使用了Web API,且在使用Web API Beta版本的时候遇到了这个问题:痴情意外:ASP.NET WebAPI RC 竟然不支持最常用的json传参。
982 0
|
2月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
43 7