ThaiBuddhistCalendar::IsLeapMonth Method (Int32, Int32, Int32)
Determines whether the specified month in the specified year in the specified era is a leap month.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- year
-
Type:
System::Int32
An integer that represents the year.
- month
-
Type:
System::Int32
An integer from 1 to 12 that represents the month.
- era
-
Type:
System::Int32
An integer that represents the era.
Return Value
Type: System::BooleanThis method always returns false, unless overridden by a derived class.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | year is outside the range supported by the calendar. -or- month is outside the range supported by the calendar. -or- era is outside the range supported by the calendar. |
Leap years in the Thai Buddhist calendar correspond to the same leap years in the Gregorian calendar. A leap year in the Gregorian calendar is defined as a Gregorian year that is evenly divisible by four, except if it is divisible by 100. However, Gregorian years that are divisible by 400 are leap years. A common year has 365 days and a leap year has 366 days.
A leap month is an entire month that occurs only in a leap year. The Thai Buddhist calendar does not have any leap months.
The following example calls IsLeapMonth for all the months in five years in the current era.
using namespace System; using namespace System::Globalization; int main() { // Creates and initializes a ThaiBuddhistCalendar. ThaiBuddhistCalendar^ myCal = gcnew ThaiBuddhistCalendar; // Checks all the months in five years in the current era. int iMonthsInYear; for ( int y = 2544; y <= 2548; y++ ) { Console::Write( " {0}:\t", y ); iMonthsInYear = myCal->GetMonthsInYear( y, ThaiBuddhistCalendar::CurrentEra ); for ( int m = 1; m <= iMonthsInYear; m++ ) Console::Write( "\t {0}", myCal->IsLeapMonth( y, m, ThaiBuddhistCalendar::CurrentEra ) ); Console::WriteLine(); } } /* This code produces the following output. 2544: False False False False False False False False False False False False 2545: False False False False False False False False False False False False 2546: False False False False False False False False False False False False 2547: False False False False False False False False False False False False 2548: False False False False False False False False False False False False */
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0