8 references to Upper
System.Private.CoreLib (8)
src\libraries\Common\src\System\HexConverter.cs (5)
74public static void ToBytesBuffer(byte value, Span<byte> buffer, int startingIndex = 0, Casing casing = Casing.Upper) 84public static void ToCharsBuffer(byte value, Span<char> buffer, int startingIndex = 0, Casing casing = Casing.Upper) 121Vector128<byte> hexMap = casing == Casing.Upper ? 165public static void EncodeToUtf16(ReadOnlySpan<byte> bytes, Span<char> chars, Casing casing = Casing.Upper) 182public static string ToString(ReadOnlySpan<byte> bytes, Casing casing = Casing.Upper)
src\libraries\System.Private.CoreLib\src\System\ApplicationId.cs (1)
57HexConverter.EncodeToUtf16(_publicKeyToken, sb.AppendSpan(2 * _publicKeyToken.Length), HexConverter.Casing.Upper);
src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
3085return HexConverter.ToString(bytes, HexConverter.Casing.Upper);
src\libraries\System.Private.CoreLib\src\System\Reflection\AssemblyName.cs (1)
387HexConverter.ToCharsBuffer(ch, vsb.AppendSpan(2), 0, HexConverter.Casing.Upper);