I want to round the double value exactly currently it giving me like...
val = 0.01618
Math.Round(val,2)
0.02 (currently it's giving like this).
0.01 (I want like this).
|
|
|
You can use Math.Floor to get it to your prefered value and then use Math.Round to get it to 2 decimals, like this:
So calling this function should return the right number: Example code:
|
|||||||||||
|
|
|
|||
|
|
|
What you want is Math.Floor() or something similar (don't no c#, sorry). This would always round down. Math.Round() does it like described here. |
|||
|
|