I have decimal numbers. I want to round up them with two places:
Original Value : 6.3619
What I want : 6.37
Original Value : 5.12003
What I want : 5.13
I tried Math.Celing
, Math.Round
. But these methods don't give me the values I want.
I don't want to truncate decimal value.