Math.Round not keeping the trailing zero
1.4 == 1.40
the only time you'd ever need a trailing 0 is when you display the number..i.e. format it to string.
.ToString("N2");
1.4
is the same as 1.40
- you just want to display it differently. Use a format string when calling ToString
- like value.ToString("0.00")