1 write to Month
System.Text.Json (1)
System\Text\Json\JsonHelpers.Date.cs (1)
175
|| !TryGetNextTwoDigits(source.Slice(start: 5, length: 2), ref parseData.
Month
)
3 references to Month
System.Text.Json (3)
System\Text\Json\JsonHelpers.Date.cs (3)
506
if ((((uint)parseData.
Month
) - 1) >= 12)
513
if (dayMinusOne >= 28 && dayMinusOne >= DateTime.DaysInMonth(parseData.Year, parseData.
Month
))
543
int totalDays = (yearMinusOne * 365) + (yearMinusOne / 4) - (yearMinusOne / 100) + (yearMinusOne / 400) + days[parseData.
Month
- 1] + parseData.Day - 1;