DateTimeFormatInfo.GetMonthName(Int32) 方法

定义

根据与当前 DateTimeFormatInfo 对象关联的区域性返回指定月份的区域性特定的全名。

public:
 System::String ^ GetMonthName(int month);
public string GetMonthName (int month);
member this.GetMonthName : int -> string
Public Function GetMonthName (month As Integer) As String

参数

month
Int32

一个介于 1 到 13 的整数,表示要检索的月份的名称。

返回

month表示的月份的区域性特定全名。

例外

month 小于 1 或大于 13。

注解

对于默认固定 DateTimeFormatInfo 对象,此方法从 GregorianCalendar 对象返回一个字符串。

month 返回值
1 “1 月”
2 “2 月”
3 “March”
4 “April”
5 “May”
6 “6 月”
7 “7 月”
8 “八月”
9 “九月”
10 “10 月”
11 “11 月”
12 “12 月”
13 ""

Calendar 对象可以容纳 13 个月的日历。 对于 12 个月日历,空字符串始终作为第 13 个月的名称返回。

适用于

另请参阅