Module Module1
Public Sub Main()
Dim values() As Double = {43.523, 12.65, 43.565}
For Each value As Double In values
Console.WriteLine("{0} --> {1}", value, Math.Round(value, 2))
Next
Console.ReadLine()
End Sub
End Module
The above code results as
43.523 --> 43.52
12.65 --> 12.65
43.565 --> 43.56
I need 43.565 --> 43.57 and not 43.565 --> 43.56. But i still need the other 43.523 --> 43.52 and 12.65 --> 12.65 rounded as is.

Round(Double, Int32, MidpointRounding)method may not appear to round midpoint values as specified by the mode parameter." ForRound(43.565,2,mode), it does, since although theDoubleclosest to 43.565 is smaller than that, multiplying by 100 yields exactly 4356.5, so the value rounded to an integer is a midpoint. But for 2.135, you get 2.13, since the rounded value isn't a midpoint. – Daniel Fischer Aug 30 '12 at 21:54