Esempio n. 1
0
 private static ReadOnlySpan <byte> GetHexadecimalDigitBytes(Format.Parsed format, FormattingData formattingData, ulong digit)
 {
     return(format.Symbol == Format.Symbol.XLowercase ? formattingData.GetHexLowerDigit(digit) : formattingData.GetHexUpperDigit(digit));
 }