System.Globalization.HijriCalendar.IsLeapMonth C# (CSharp) Method

IsLeapMonth() public method

public IsLeapMonth ( int year, int month, int era ) : bool
year int
month int
era int
return bool
        public override bool IsLeapMonth(int year, int month, int era) {
            CheckYearMonthRange(year, month, era);
            return (false);
        }

Usage Example

Example #1
0
 // Determine if a particular month is a leap month.
 public override bool IsLeapMonth(int year, int month, int era)
 {
     return(hijri.IsLeapMonth(year, month, era));
 }