DateAndTime.MonthName(Int32, Boolean) 方法

定义

返回包含指定月份名称的字符串值。

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 表示 1 月,12 表示 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使用 命名空间中 类的 CultureInfo 属性中的System.Globalization当前日历设置CurrentCulture。 默认值CurrentCulture控制面板设置确定。

适用于

另请参阅