13 references to FromChar
System.Private.CoreLib (13)
src\runtime\src\libraries\Common\src\System\HexConverter.cs (5)
468
byteLo =
FromChar
(utf8Source[i + 1]);
469
byteHi =
FromChar
(utf8Source[i]);
503
byteLo =
FromChar
(source[i + 1]);
504
byteHi =
FromChar
(source[i]);
582
return
FromChar
(c) != 0xFF;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
882
int numValue = HexConverter.
FromChar
(c);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (4)
473
int h1 = HexConverter.
FromChar
(value[pos + 1]);
474
int h2 = HexConverter.
FromChar
(value[pos + 2]);
531
int h1 = HexConverter.
FromChar
(bytes[pos + 1]);
532
int h2 = HexConverter.
FromChar
(bytes[pos + 2]);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (3)
617
public static uint FromChar(uint ch) => (uint)HexConverter.
FromChar
((int)ch);
1292
int digit = HexConverter.
FromChar
((int)ch);
1338
int digit = HexConverter.
FromChar
((int)ch);