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