1 write to _helper
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\JapaneseCalendar.cs (1)
98_helper = new GregorianCalendarHelper(this, GetEraInfo());
22 references to _helper
System.Private.CoreLib (22)
src\libraries\System.Private.CoreLib\src\System\Globalization\JapaneseCalendar.cs (22)
105return _helper.AddMonths(time, months); 110return _helper.AddYears(time, years); 115return _helper.GetDaysInMonth(year, month, era); 120return _helper.GetDaysInYear(year, era); 125return _helper.GetDayOfMonth(time); 130return _helper.GetDayOfWeek(time); 135return _helper.GetDayOfYear(time); 140return _helper.GetMonthsInYear(year, era); 145return _helper.GetWeekOfYear(time, rule, firstDayOfWeek); 150return _helper.GetEra(time); 155return _helper.GetMonth(time); 160return _helper.GetYear(time); 165return _helper.IsLeapDay(year, month, day, era); 170return _helper.IsLeapYear(year, era); 175return _helper.GetLeapMonth(year, era); 180return _helper.IsLeapMonth(year, month, era); 186return _helper.ToDateTime(year, month, day, hour, minute, second, millisecond, era); 196ArgumentOutOfRangeException.ThrowIfGreaterThan(year, _helper.MaxYear); 202public override int[] Eras => _helper.Eras; 254return _helper.IsValidYear(year, era); 271if (value < 99 || value > _helper.MaxYear) 276SR.Format(SR.ArgumentOutOfRange_Range, 99, _helper.MaxYear));