I have a decimal number d = 80.12345. and class property decimal FixedPrice{get;set;}
When I assign FixedPrice = d;, the value of Fixed price = 80.1235.
However, i want to store it as 80.12345.
Can it be explained why a decimal number when assigned to another decimal is loosing its scale?
Thanks, Ankita