month_from_fixed() публичный статический Метод

A method computing the Gregorian month from a fixed day number.
public static month_from_fixed ( int date ) : int
date int An integer specifying the fixed day number. ///
Результат int
Пример #1
0
 public static int GetMonth(DateTime time)
 {
     return(CCGregorianCalendar.month_from_fixed(CCFixed.FromDateTime(time)));
 }