public static void Main() { // Creates and initializes a HijriCalendar. HijriCalendar myCal = new HijriCalendar(); // Checks all the months in five years in the current era. int iMonthsInYear; for ( int y = 1421; y <= 1425; y++ ) { Console.Write( "{0}:\t", y ); iMonthsInYear = myCal.GetMonthsInYear( y, HijriCalendar.CurrentEra ); for ( int m = 1; m <= iMonthsInYear; m++ ) Console.Write( "\t{0}", myCal.IsLeapMonth( y, m, HijriCalendar.CurrentEra ) ); Console.WriteLine(); } }