9 writes to day
mscorlib (9)
system\globalization\hebrewcalendar.cs (9)
494lunarDate.day = HebrewTable[index]; 505lunarDate.day = 1; 512lunarDate.day = 2; 516lunarDate.day = 3; 520lunarDate.day = 29; 566result.day = lunarDate.day; 591result.day += (int)NumDays; 599result.day = 1; 643result.day += (int)(NumDays - 1);
7 references to day
mscorlib (7)
system\globalization\hebrewcalendar.cs (7)
460return (result.day); 502switch (lunarDate.day) { 566result.day = lunarDate.day; 590if ((NumDays + (long)lunarDate.day) <= (long)(LunarMonthLen[hebrewYearType, lunarDate.month])) { 608NumDays -= (long)(LunarMonthLen[hebrewYearType, lunarDate.month] - lunarDate.day); 1002if ((hebrewMonth == hebrewDateOfJan1.month) && (hebrewDay == hebrewDateOfJan1.day)) { 1006int days = GetDayDifference(lunarYearType, hebrewMonth, hebrewDay, hebrewDateOfJan1.month, hebrewDateOfJan1.day);