9 references to Upper
System.Private.CoreLib (9)
src\libraries\Common\src\System\HexConverter.cs (6)
75
public static void ToBytesBuffer(byte value, Span<byte> buffer, int startingIndex = 0, Casing casing = Casing.
Upper
)
85
public static void ToCharsBuffer(byte value, Span<char> buffer, int startingIndex = 0, Casing casing = Casing.
Upper
)
125
Vector128<byte> hexMap = casing == Casing.
Upper
?
185
public static void EncodeToUtf8(ReadOnlySpan<byte> source, Span<byte> utf8Destination, Casing casing = Casing.
Upper
)
202
public static void EncodeToUtf16(ReadOnlySpan<byte> source, Span<char> destination, Casing casing = Casing.
Upper
)
219
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)
3160
return HexConverter.ToString(bytes, HexConverter.Casing.
Upper
);
src\libraries\System.Private.CoreLib\src\System\Reflection\AssemblyName.cs (1)
376
HexConverter.ToCharsBuffer(ch, vsb.AppendSpan(2), 0, HexConverter.Casing.
Upper
);