8 references to MaxMonthPlusOne
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Globalization\HebrewCalendar.cs (8)
479if ((numDays + (long)lunarDate.day) <= (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + lunarDate.month])) 493numDays -= (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + lunarDate.month] - lunarDate.day); 501while (numDays > (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + result.month])) 504numDays -= (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + result.month++]); 508if ((result.month > 13) || (LunarMonthLen[hebrewYearType * MaxMonthPlusOne + result.month] == 0)) 661int monthDays = LunarMonthLen[hebrewYearType * MaxMonthPlusOne + month]; 778int days = LunarMonthLen[lunarYearType * MaxMonthPlusOne + month1] - day1; 786days += LunarMonthLen[lunarYearType * MaxMonthPlusOne + month1++];