Calendar.GetMonthsInYear Method (Int32, Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

When overridden in a derived class, returns the number of months in the specified year in the specified era.

Namespace:  System.Globalization
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public MustOverride Function GetMonthsInYear ( _
    year As Integer, _
    era As Integer _
) As Integer
public abstract int GetMonthsInYear(
    int year,
    int era
)

Parameters

Return Value

Type: System..::.Int32
The number of months in the specified year in the specified era.

Exceptions

Exception Condition
ArgumentOutOfRangeException

year is outside the range supported by the calendar.

-or-

era is outside the range supported by the calendar.

Remarks

For example, in HebrewCalendar, GetMonthsInYear returns 12 for a common year or 13 for a leap year.

Notes to Inheritors

The derived class must support CurrentEra when it is passed as the era parameter. One way to support CurrentEra is by replacing it with the value stored in Eras[0], which is the value for the current era of the calendar.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

Calendar Class

GetMonthsInYear Overload

System.Globalization Namespace

CurrentEra

Eras

GetDaysInYear

GetDaysInMonth