src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Date.O.cs (11)
47if (source[4] != Utf8Constants.Hyphen)
71if (source[7] != Utf8Constants.Hyphen)
119if (source[13] != Utf8Constants.Colon)
143if (source[16] != Utf8Constants.Colon)
167if (source[19] != Utf8Constants.Period)
197if (offsetChar != 'Z' && offsetChar != Utf8Constants.Plus && offsetChar != Utf8Constants.Minus)
227Debug.Assert(offsetChar == Utf8Constants.Plus || offsetChar == Utf8Constants.Minus);
252if (source[30] != Utf8Constants.Colon)
276if (!TryCreateDateTimeOffset(year: year, month: month, day: day, hour: hour, minute: minute, second: second, fraction: fraction, offsetNegative: offsetChar == Utf8Constants.Minus, offsetHours: offsetHours, offsetMinutes: offsetMinutes, out value))