1

How to I round a decimal upwards to the nearest int.

i.e.

1.2 ---> 2
5.6 ---> 6
79.9 ---> 80
85.01 ---> 86

(int)Math.Round(count / (decimal)rows, MidpointRounding.AwayFromZero)

mellamokb
  • 56,094
  • 12
  • 110
  • 136
TheBoubou
  • 19,487
  • 54
  • 148
  • 236

1 Answers1

12

Math.Ceiling is your friend

spender
  • 117,338
  • 33
  • 229
  • 351