如何获取.Net中的语言环境列表

时间:2010-02-14 09:04:35

标签: c# .net locale

我想为用户提供选择文本文件区域设置的选项。

.net中是否有一些类可以保留可用语言环境列表?

现在,我打算从MSDN页面Language Identifier Constants and Strings创建自己的列表类,但如果.net中已有内容,那就更好了。

以下是杰里米在答案中写的关于CultureInfo.GetCultures method的MSDN文章。还有代码示例。

2 个答案:

答案 0 :(得分:11)

你想要“为每个语言环境循环”。

    Dim info As CultureInfo
    For Each info In CultureInfo.GetCultures(CultureTypes.AllCultures)

        ListBox1.Items.Add(info.EnglishName)
    Next

将一个语言环境列表转储到Listbox1

需要半秒钟

然后您可以通过各种方式引用“信息”,例如:

    info.NumberFormat
    info.DateTimeFormat

在该区域设置日期获取今天的日期:

        If Not info.IsNeutralCulture Then
            Dim dateNow As DateTime = DateTime.Now
            ListBox1.Items.Add(dateNow.ToString("d", info.DateTimeFormat).ToString)
        End If

答案 1 :(得分:2)

查看System.Globalization.CultureInfo课程周围的所有内容。你可能会找到你想要的东西