DateAndTime.Month(DateTime) 方法

定义

返回表示一年中第几个月的整数值,该值介于 1 和 12 之间。

public:
 static int Month(DateTime DateValue);
public static int Month (DateTime DateValue);
static member Month : DateTime -> int
Public Function Month (DateValue As DateTime) As Integer

参数

DateValue
DateTime

必需。 要从中提取月的 Date 值。

返回

介于 1 和 12 之间表示一年中第几个月的整数值。

示例

此示例使用 Month 函数从指定日期获取月份。 在开发环境中,日期文本使用代码的区域设置以短日期格式显示。

Dim thisDate As Date
Dim thisMonth As Integer
thisDate = #2/12/1969#
thisMonth = Month(thisDate)
' thisMonth now contains 2.

注解

还可以通过调用 DatePart 并为 参数指定 DateInterval.MonthInterval 来获取一年中的月份。

适用于

另请参阅