11 implementations of MultiplyBy10
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1231
static byte IBinaryIntegerParseAndFormatInfo<byte>.
MultiplyBy10
(byte value) => (byte)(value * 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2100
static char IBinaryIntegerParseAndFormatInfo<char>.
MultiplyBy10
(char value) => (char)(value * 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2150
static Int128 IBinaryIntegerParseAndFormatInfo<Int128>.
MultiplyBy10
(Int128 value) => value * 10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1425
static short IBinaryIntegerParseAndFormatInfo<short>.
MultiplyBy10
(short value) => (short)(value * 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1476
static int IBinaryIntegerParseAndFormatInfo<int>.
MultiplyBy10
(int value) => value * 10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1479
static long IBinaryIntegerParseAndFormatInfo<long>.
MultiplyBy10
(long value) => value * 10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1404
static sbyte IBinaryIntegerParseAndFormatInfo<sbyte>.
MultiplyBy10
(sbyte value) => (sbyte)(value * 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2228
static UInt128 IBinaryIntegerParseAndFormatInfo<UInt128>.
MultiplyBy10
(UInt128 value) => value * 10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1224
static ushort IBinaryIntegerParseAndFormatInfo<ushort>.
MultiplyBy10
(ushort value) => (ushort)(value * 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1295
static uint IBinaryIntegerParseAndFormatInfo<uint>.
MultiplyBy10
(uint value) => value * 10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1296
static ulong IBinaryIntegerParseAndFormatInfo<ulong>.
MultiplyBy10
(ulong value) => value * 10;
3 references to MultiplyBy10
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (3)
217
n = TInteger.
MultiplyBy10
(n);
469
answer = TInteger.
MultiplyBy10
(answer);
503
answer = TInteger.
MultiplyBy10
(answer);