In C#, how do I round a float to the nearest int?
I see Math.Ceiling and Math.Round, but these returns a decimal. Do I use one of these then cast to an Int?
|
|
|||
|
|
|
If you want to round to the nearest int:
You can also use:
Which will use If you want to round up:
|
||||||||||
|
|
|
(int)Math.Round(myNumber, 0) |
||
|
|
|
|
Off the top of my head:
|
||
|
|
|
Yes. There is no problem doing that. Decimals and doubles can represent integers exactly, so there will be no representation error. (You won't get a case, for instance, where Round returns 4.999... instead of 5.) |
||
|
|
|
|
The easiest is to just add |
||
|
|
|
|
You can cast to an int provided you are sure it's in the range for an int (Int32.MinValue to Int32.MaxValue). |
||
|
|