c# – 不能将operator *应用于decimal和double类型的操作数

前端之家收集整理的这篇文章主要介绍了c# – 不能将operator *应用于decimal和double类型的操作数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我需要在产品上申请5.2%的折扣.我尝试过这样的事情:
decimal BasePrice {get;set;}
decimal Discount = (BasePrice * 5.2) / 100;

但Visual Studio告诉我它:

can not apply operator ‘*’ to operand of type decimal and double

如果是这样我怎么能代表这个折扣?

解决方法

使用
decimal Discount = (BasePrice * 5.2m) / 100;

否则,5.2将被视为双精度.

MSDN开始:

If you want a numeric real literal to be treated as decimal,use the suffix m or M

原文链接:https://www.f2er.com/csharp/96574.html

猜你在找的C#相关文章