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