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