5 references to FromChar
System.Private.CoreLib (5)
src\libraries\Common\src\System\HexConverter.cs (1)
439
return
FromChar
(c) != 0xFF;
src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
843
int numValue = HexConverter.
FromChar
(c);
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (2)
531
int h1 = HexConverter.
FromChar
(bytes[pos + 1]);
532
int h2 = HexConverter.
FromChar
(bytes[pos + 2]);
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
538
public static uint FromChar(uint ch) => (uint)HexConverter.
FromChar
((int)ch);