DateAndTime.Month(DateTime) Método

Definición

Devuelve un valor Integer de 1 a 12 que representa el mes del año.

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

Parámetros

DateValue
DateTime

Obligatorio. Valor Date del que se desea extraer el mes.

Devoluciones

Valor Integer de 1 a 12 que representa el mes del año.

Ejemplos

En este ejemplo se usa la Month función para obtener el mes a partir de una fecha especificada. En el entorno de desarrollo, el literal de fecha se muestra en formato de fecha corta mediante la configuración regional del código.

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

Comentarios

También puede obtener el mes del año llamando DatePart a y especificando DateInterval.Month para el Interval argumento .

Se aplica a

Consulte también