DateAndTime.MonthName(Int32, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回字串值,其中包含指定月份的名稱。
public static string MonthName (int Month, bool Abbreviate = false);
static member MonthName : int * bool -> string
Public Function MonthName (Month As Integer, Optional Abbreviate As Boolean = false) As String
參數
- Month
- Int32
必要。 以 1 到 13 的數值指派月份,1 表示一月,12 表示十二月。 您也可以在有 13 個月的行事曆中使用 13 的值。 如果您的系統使用 12 個月行事曆且 Month
為 13, MonthName
則傳回空字串。
- Abbreviate
- Boolean
選擇性。 若要縮寫月份名稱即為 True
;否則為 False
。 預設為 False
。
傳回
字串值,其中包含指定月份的名稱。
例外狀況
Month
小於 1 或大於 13。
範例
這個範例會 MonthName
使用 函式,根據指定的整數來判斷月份的名稱。 布爾值會決定會顯示完整名稱 () False
或 () 的縮寫名稱 True
。
Dim thisMonth As Integer
Dim name As String
thisMonth = 4
' Set Abbreviate to True to return an abbreviated name.
name = MonthName(thisMonth, True)
' name now contains "Apr".
備註
所MonthName
傳回的字串不僅取決於輸入自變數,也取決於 Windows 控制台 中指定的區域選項設定。
注意
MonthName
會使用 CurrentCulture 命名空間中 類別的 CultureInfo 屬性中的 System.Globalization 目前行事曆設定。 默認值CurrentCulture取決於 控制台 設定。