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