次の方法で共有


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 "5 月"
6 "June"
7 "July"
8 "August"
9 "September"
10 "October"
11 "November"
12 "December"
13 ""

Calendar オブジェクトは、13 か月のカレンダーに対応できます。 12 か月カレンダーの場合、空の文字列は常に 13 か月目の名前として返されます。

適用対象

こちらもご覧ください