8 references to LunarMonthLen
mscorlib (8)
system\globalization\hebrewcalendar.cs (8)
590if ((NumDays + (long)lunarDate.day) <= (long)(LunarMonthLen[hebrewYearType, lunarDate.month])) { 608NumDays -= (long)(LunarMonthLen[hebrewYearType, lunarDate.month] - lunarDate.day); 617while (NumDays > (long)(LunarMonthLen[hebrewYearType, result.month])) { 621NumDays -= (long)(LunarMonthLen[hebrewYearType, result.month++]); 627if ((result.month > 13) || (LunarMonthLen[hebrewYearType, result.month] == 0)) { 815int monthDays = LunarMonthLen[hebrewYearType, month]; 955int days = LunarMonthLen[lunarYearType, month1] - day1; 962days += LunarMonthLen[lunarYearType, month1++];