5 references to CalendricalCalculationsHelper
mscorlib (5)
system\globalization\Persiancalendar.cs (5)
129
int approximateDaysFromEpochForYearStart = (int)(
CalendricalCalculationsHelper
.MeanTropicalYearInDays * (year - 1));
130
long yearStart =
CalendricalCalculationsHelper
.PersianNewYearOnOrBefore(PersianEpoch + approximateDaysFromEpochForYearStart + ApproximateHalfYear);
227
long yearStart =
CalendricalCalculationsHelper
.PersianNewYearOnOrBefore(NumDays);
228
int y = (int)(Math.Floor(((yearStart - PersianEpoch) /
CalendricalCalculationsHelper
.MeanTropicalYearInDays) + 0.5)) + 1;
240
int ordinalDay = (int)(NumDays -
CalendricalCalculationsHelper
.GetNumberOfDays(this.ToDateTime(y, 1, 1, 0, 0, 0, 0, 1)));