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)
62
return
_helper
.AddMonths(time, months);
67
return
_helper
.AddYears(time, years);
72
return
_helper
.GetDaysInMonth(year, month, era);
77
return
_helper
.GetDaysInYear(year, era);
82
return
_helper
.GetDayOfMonth(time);
87
return
_helper
.GetDayOfWeek(time);
92
return
_helper
.GetDayOfYear(time);
97
return
_helper
.GetMonthsInYear(year, era);
102
return
_helper
.GetWeekOfYear(time, rule, firstDayOfWeek);
107
return
_helper
.GetEra(time);
112
return
_helper
.GetMonth(time);
117
return
_helper
.GetYear(time);
122
return
_helper
.IsLeapDay(year, month, day, era);
127
return
_helper
.IsLeapYear(year, era);
132
return
_helper
.GetLeapMonth(year, era);
137
return
_helper
.IsLeapMonth(year, month, era);
142
return
_helper
.ToDateTime(year, month, day, hour, minute, second, millisecond, era);
145
public override int[] Eras =>
_helper
.Eras;
163
if (value < 99 || value >
_helper
.MaxYear)
168
SR.Format(SR.ArgumentOutOfRange_Range, 99,
_helper
.MaxYear));
183
ArgumentOutOfRangeException.ThrowIfGreaterThan(year,
_helper
.MaxYear);