11 implementations of MultiplyBy16
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1217static byte IBinaryIntegerParseAndFormatInfo<byte>.MultiplyBy16(byte value) => (byte)(value * 16);
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2042static char IBinaryIntegerParseAndFormatInfo<char>.MultiplyBy16(char value) => (char)(value * 16);
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2141static Int128 IBinaryIntegerParseAndFormatInfo<Int128>.MultiplyBy16(Int128 value) => value * 16;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1409static short IBinaryIntegerParseAndFormatInfo<short>.MultiplyBy16(short value) => (short)(value * 16);
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1475static int IBinaryIntegerParseAndFormatInfo<int>.MultiplyBy16(int value) => value * 16;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1478static long IBinaryIntegerParseAndFormatInfo<long>.MultiplyBy16(long value) => value * 16;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1372static sbyte IBinaryIntegerParseAndFormatInfo<sbyte>.MultiplyBy16(sbyte value) => (sbyte)(value * 16);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2176static UInt128 IBinaryIntegerParseAndFormatInfo<UInt128>.MultiplyBy16(UInt128 value) => value * 16;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1224static ushort IBinaryIntegerParseAndFormatInfo<ushort>.MultiplyBy16(ushort value) => (ushort)(value * 16);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1269static uint IBinaryIntegerParseAndFormatInfo<uint>.MultiplyBy16(uint value) => value * 16;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1262static ulong IBinaryIntegerParseAndFormatInfo<ulong>.MultiplyBy16(ulong value) => value * 16;
1 reference to MultiplyBy16
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
541public static TInteger ShiftLeftForNextDigit(TInteger value) => TInteger.MultiplyBy16(value);