IsLeapMonth() public method

public IsLeapMonth ( int year, int month, int era ) : bool
year int
month int
era int
return bool
Beispiel #1
0
 public override bool IsLeapMonth(int year, int month, int era)
 {
     return(helper.IsLeapMonth(year, month, era));
 }