DateAndTime.Month(DateTime) Metodo

Definizione

Intero compreso tra 1 e 12 che rappresenta il mese dell'anno.

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

Parametri

DateValue
DateTime

Obbligatorio. Valore Date da cui estrarre il mese.

Restituisce

Intero compreso tra 1 e 12 che rappresenta il mese dell'anno.

Esempio

In questo esempio viene usata la funzione per ottenere il Month mese da una data specificata. Nell'ambiente di sviluppo il valore letterale data viene visualizzato in formato di data breve usando le impostazioni locali del codice.

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

Commenti

È anche possibile ottenere il mese dell'anno chiamando DatePart e specificando DateInterval.Month per l'argomento Interval .

Si applica a

Vedi anche