EastAsianLunisolarCalendar.GetDaysInMonth(Int32, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Calculates the number of days in the specified month of the specified year and era.
public:
override int GetDaysInMonth(int year, int month, int era);
public override int GetDaysInMonth (int year, int month, int era);
override this.GetDaysInMonth : int * int * int -> int
Public Overrides Function GetDaysInMonth (year As Integer, month As Integer, era As Integer) As Integer
Parameters
- year
- Int32
An integer that represents the year.
- month
- Int32
An integer from 1 through 12 in a common year, or 1 through 13 in a leap year, that represents the month.
- era
- Int32
An integer that represents the era.
Returns
The number of days in the specified month of the specified year and era.
Exceptions
year
, month
, or era
is outside the range supported by this calendar.
Remarks
If the month
parameter is the second month, the GetDaysInMonth method returns 28 or 29, depending on whether the year
parameter is a leap year.