GetMonthsInYear() public method

public GetMonthsInYear ( int year, int era ) : int
year int
era int
return int
Esempio n. 1
0
 // Get the number of months in a specific year.
 public override int GetMonthsInYear(int year, int era)
 {
     return(hijri.GetMonthsInYear(year, era));
 }