用英语月份填写组合框
我必须用英语填写月份的组合框:一月、二月等。 我按照下面的方法做了:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
CultureInfo 已在框架中包含月份名称列表。 你可以这样写:
The CultureInfo already contains the list of month names right in the framework. You could just write: