2 implementations of CastFrom
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1213
static byte IUtfChar<byte>.
CastFrom
(ulong value) => (byte)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2085
static char IUtfChar<char>.
CastFrom
(ulong value) => (char)value;
2 references to CastFrom
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (2)
2351
buffer[--index] = TChar.
CastFrom
(value + '0');
2383
buffer[--index] = TChar.
CastFrom
(remainder + '0');