1 write to _helper
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\TaiwanCalendar.cs (1)
55_helper = new GregorianCalendarHelper(this, s_taiwanEraInfo);
21 references to _helper
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Globalization\TaiwanCalendar.cs (21)
62return _helper.AddMonths(time, months); 67return _helper.AddYears(time, years); 72return _helper.GetDaysInMonth(year, month, era); 77return _helper.GetDaysInYear(year, era); 82return _helper.GetDayOfMonth(time); 87return _helper.GetDayOfWeek(time); 92return _helper.GetDayOfYear(time); 97return _helper.GetMonthsInYear(year, era); 102return _helper.GetWeekOfYear(time, rule, firstDayOfWeek); 107return _helper.GetEra(time); 112return _helper.GetMonth(time); 117return _helper.GetYear(time); 122return _helper.IsLeapDay(year, month, day, era); 127return _helper.IsLeapYear(year, era); 132return _helper.GetLeapMonth(year, era); 137return _helper.IsLeapMonth(year, month, era); 142return _helper.ToDateTime(year, month, day, hour, minute, second, millisecond, era); 145public override int[] Eras => _helper.Eras; 163if (value < 99 || value > _helper.MaxYear) 168SR.Format(SR.ArgumentOutOfRange_Range, 99, _helper.MaxYear)); 183ArgumentOutOfRangeException.ThrowIfGreaterThan(year, _helper.MaxYear);