11 implementations of MultiplyBy10
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1215
static byte IBinaryIntegerParseAndFormatInfo<byte>.
MultiplyBy10
(byte value) => (byte)(value * 10);
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2040
static char IBinaryIntegerParseAndFormatInfo<char>.
MultiplyBy10
(char value) => (char)(value * 10);
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2139
static Int128 IBinaryIntegerParseAndFormatInfo<Int128>.
MultiplyBy10
(Int128 value) => value * 10;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1407
static short IBinaryIntegerParseAndFormatInfo<short>.
MultiplyBy10
(short value) => (short)(value * 10);
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1473
static int IBinaryIntegerParseAndFormatInfo<int>.
MultiplyBy10
(int value) => value * 10;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1476
static long IBinaryIntegerParseAndFormatInfo<long>.
MultiplyBy10
(long value) => value * 10;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1370
static sbyte IBinaryIntegerParseAndFormatInfo<sbyte>.
MultiplyBy10
(sbyte value) => (sbyte)(value * 10);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2174
static UInt128 IBinaryIntegerParseAndFormatInfo<UInt128>.
MultiplyBy10
(UInt128 value) => value * 10;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1222
static ushort IBinaryIntegerParseAndFormatInfo<ushort>.
MultiplyBy10
(ushort value) => (ushort)(value * 10);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1267
static uint IBinaryIntegerParseAndFormatInfo<uint>.
MultiplyBy10
(uint value) => value * 10;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1260
static ulong IBinaryIntegerParseAndFormatInfo<ulong>.
MultiplyBy10
(ulong value) => value * 10;
3 references to MultiplyBy10
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (3)
140
n = TInteger.
MultiplyBy10
(n);
390
answer = TInteger.
MultiplyBy10
(answer);
424
answer = TInteger.
MultiplyBy10
(answer);