my_from_fixed() public static method

The method computes the Islamic year and month from a fixed day number.
public static my_from_fixed ( int &month, int &year, int date ) : void
month int The output value giving the Islamic month. ///
year int The output value giving the Islamic year. ///
date int An integer value specifying the fixed day /// number.
return void
        public static int month_from_fixed(int date)
        {
            int result;
            int num;

            CCHijriCalendar.my_from_fixed(out result, out num, date);
            return(result);
        }
 public static void dmy_from_fixed(out int day, out int month, out int year, int date)
 {
     CCHijriCalendar.my_from_fixed(out month, out year, date);
     day = date - CCHijriCalendar.fixed_from_dmy(1, month, year) + 1;
 }