5 references to ToInt64
BasketService (1)
Models\DecimalValue.cs (1)
19
var units = decimal.
ToInt64
(value);
MyFrontend (1)
playground\TestShop\BasketService\Models\DecimalValue.cs (1)
19
var units = decimal.
ToInt64
(value);
System.Linq.Expressions (1)
System\Linq\Expressions\Compiler\ILGen.cs (1)
1019
il.EmitPrimitive(decimal.
ToInt64
(value));
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
1310
return decimal.
ToInt64
(decimal.Round(value, 0));
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
955
public static explicit operator long(decimal value) =>
ToInt64
(value);