17 references to Casing
System.Private.CoreLib (17)
src\libraries\Common\src\System\HexConverter.cs (11)
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) 114private static void EncodeToUtf16_Vector128(ReadOnlySpan<byte> bytes, Span<char> chars, Casing casing) 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) 213public Casing Casing { get; set; }
src\libraries\Common\src\System\Reflection\AssemblyNameFormatter.cs (1)
87HexConverter.EncodeToUtf16(keyOrToken, vsb.AppendSpan(keyOrToken.Length * 2), HexConverter.Casing.Lower);
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 (3)
3085return HexConverter.ToString(bytes, HexConverter.Casing.Upper); 3162return HexConverter.ToString(bytes, HexConverter.Casing.Lower); 3185HexConverter.EncodeToUtf16(source, destination, HexConverter.Casing.Lower);
src\libraries\System.Private.CoreLib\src\System\Reflection\AssemblyName.cs (1)
387HexConverter.ToCharsBuffer(ch, vsb.AppendSpan(2), 0, HexConverter.Casing.Upper);