T
Tsair
I found the decimal round up problem,
System.Math.Round(106.865, 2)= 106.86
System.Math.Round(106.875, 2) = 106.88
System.Math.Round(106.885, 2) = 106.88
System.Math.Round(106.895, 2) = 106.9
Why some time it round up the 5 and sometime roun down the 5 ?
System.Math.Round(106.865, 2)= 106.86
System.Math.Round(106.875, 2) = 106.88
System.Math.Round(106.885, 2) = 106.88
System.Math.Round(106.895, 2) = 106.9
Why some time it round up the 5 and sometime roun down the 5 ?