GregorianCalendar.GetLeapMonth Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Calculates the leap month for a specified year and era.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overrides Function GetLeapMonth ( _ year As Integer, _ era As Integer _ ) As Integer
Parameters
- year
- Type: System.Int32
A year.
- era
- Type: System.Int32
An era. Specify either ADEra or GregorianCalendar.Eras[Calendar.CurrentEra].
Return Value
Type: System.Int32Always 0 because the Gregorian calendar does not recognize leap months.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | year is less than the Gregorian calendar year 1 or greater than the Gregorian calendar year 9999. -or- era is not ADEra or CurrentEra. |
Show: