用英语月份填写组合框

发布于 2024-07-17 07:46:02 字数 447 浏览 8 评论 0原文

我必须用英语填写月份的组合框:一月、二月等。 我按照下面的方法做了:

private string[] AmericanMonths
{
  get
  {
    var arr = new string[12];
    var americanCulture = new CultureInfo("en-US");
    for (int i = 0; i < 12; i++)
    {
      arr[i] = new DateTime(2000, i + 1, 1).ToString("MMMM", americanCulture);
    }
    return arr;
  }
}

comboMonth.Items.AddRange(AmericanMonths);

你觉得怎么样,什么方法更好(性能)?

有没有办法将表示月份的整数转换为其名称?

I have to fill a combobox with month in English: January, February, etc.
I did it next way:

private string[] AmericanMonths
{
  get
  {
    var arr = new string[12];
    var americanCulture = new CultureInfo("en-US");
    for (int i = 0; i < 12; i++)
    {
      arr[i] = new DateTime(2000, i + 1, 1).ToString("MMMM", americanCulture);
    }
    return arr;
  }
}

comboMonth.Items.AddRange(AmericanMonths);

How do you think, what way is better (perfomance)?

Is there a way to convert an integer representing month number to it's name?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冧九 2024-07-24 07:46:03

CultureInfo 具有 DateTimeFormat 属性,其中包含信息关于日期时间格式。 从那里您可以使用 GetMonthName 或 < a href="http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.getabbreviatedmonthname.aspx" rel="nofollow noreferrer">GetAbbreviatedMonthName。 或者,您也可以通过 获取月份名称数组DateTimeFormatInfo 的 MonthNames 属性。

CultureInfo has DateTimeFormat property which contains the information about the date time formatting. From there you can use GetMonthName or GetAbbreviatedMonthName. Or alternatively you can get the array of month names through the MonthNames property of the DateTimeFormatInfo.

雨轻弹 2024-07-24 07:46:02

CultureInfo 已在框架中包含月份名称列表。 你可以这样写:

var americanCulture = new CultureInfo("en-US");
comboMonth.Items.AddRange(americanCulture.DateTimeFormat.MonthNames.Take(12)); //to remove last empty element

The CultureInfo already contains the list of month names right in the framework. You could just write:

var americanCulture = new CultureInfo("en-US");
comboMonth.Items.AddRange(americanCulture.DateTimeFormat.MonthNames.Take(12)); //to remove last empty element
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文