I have problem in rounding number in vb.net
I use Math.Round(13.025, 2), it returns 13.02
but Math.Round(13.035, 2), it returns 13.04.
I very wonder: If Math.Round(13.025, 2) return 13.02, then Math.Round(13.035, 2) should return 13.03
Anyone know why?