11 references to FromChar
System.Private.CoreLib (11)
src\libraries\Common\src\System\HexConverter.cs (5)
473byteLo = FromChar(utf8Source[i + 1]); 474byteHi = FromChar(utf8Source[i]); 508byteLo = FromChar(source[i + 1]); 509byteHi = FromChar(source[i]); 587return FromChar(c) != 0xFF;
src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
871int numValue = HexConverter.FromChar(c);
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (4)
473int h1 = HexConverter.FromChar(value[pos + 1]); 474int h2 = HexConverter.FromChar(value[pos + 2]); 531int h1 = HexConverter.FromChar(bytes[pos + 1]); 532int h2 = HexConverter.FromChar(bytes[pos + 2]);
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
538public static uint FromChar(uint ch) => (uint)HexConverter.FromChar((int)ch);