9 writes to day
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Globalization\HebrewCalendar.cs (9)
396lunarDate.day = HebrewTable[index]; 406lunarDate.day = 1; 413lunarDate.day = 2; 417lunarDate.day = 3; 421lunarDate.day = 29; 463result.day = lunarDate.day; 481result.day += (int)numDays; 487result.day = 1; 520result.day += (int)(numDays - 1);
7 references to day
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Globalization\HebrewCalendar.cs (7)
369DatePartDay => result.day, 402switch (lunarDate.day) 463result.day = lunarDate.day; 479if ((numDays + (long)lunarDate.day) <= (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + lunarDate.month])) 493numDays -= (long)(LunarMonthLen[hebrewYearType * MaxMonthPlusOne + lunarDate.month] - lunarDate.day); 820if ((hebrewMonth == hebrewDateOfJan1.month) && (hebrewDay == hebrewDateOfJan1.day)) 825int days = GetDayDifference(lunarYearType, hebrewMonth, hebrewDay, hebrewDateOfJan1.month, hebrewDateOfJan1.day);