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