3 references to DaysToMonth365
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Globalization\EastAsianLunisolarCalendar.cs (3)
275
int solarDay = isLeapYear ? DaysToMonth366[solarMonth - 1] :
DaysToMonth365
[solarMonth - 1];
316
lunarDay -=
DaysToMonth365
[jan1Month - 1];
364
ReadOnlySpan<int> days = isLeapYear ? DaysToMonth366 :
DaysToMonth365
;