vote up 0 vote down star
1

How do I convert a decimal to an int?

Ta

flag
2  
It would be helpful to know whether you wanted to round to the nearest int or just drop the numbers after the decimal (ie: always round down) – Dinah Apr 24 at 19:32
i honestly don't see the point in downvoting genuine questions. yes, the answer could be found on google BUT wouldn't it just improve the quality of the site if people stopped closing every second question? it's not like this question is spam or anything, and i'm sure it'd be useful for many new-comer's to c# – baeltazor Sep 14 at 18:52
You should use google, or the msdn site, for this kind of basic question. – Larry Watanabe Sep 14 at 18:52
DRIP - how will it improve this site to replicate all of programming on google here? In that case stack overflow should just implement a bot to start searching out all programming related data and indexing it here. – Larry Watanabe Sep 14 at 18:54

10 Answers

vote up 0 vote down

decimal d = 5.5;

int i = decimal.ToInt32(d);// you will get i = 5

ref: link text

link|flag
vote up 0 vote down

I find that the casting operator does not work if you have a boxed decimal (i.e. a decimal value inside an object type). Convert.ToInt32(decimal as object) works fine in this case.

This situation comes up when retrieving IDENTITY/AUTONUMBER values from the database:

SqlCommand foo = new SqlCommand("INSERT INTO...; SELECT SCOPE_IDENTITY()", conn);
int ID = Convert.ToInt32(foo.ExecuteScalar());  // works
int ID = (int)foo.ExecuteScalar();              // throws InvalidCastException

See 4.3.2 Unboxing conversions

link|flag
vote up 1 vote down

I prefer using Math.Round, Math.Floor, Math.Ceiling or Math.Truncate to explicitly set the rounding mode as appropriate.

Note that they all return Decimal as well - since Decimal has a larger range of values than an Int32, so you'll still need to cast (and check for overflow/underflow).

 checked {
   int i = (int)Math.Floor(d);
 }
link|flag
vote up 12 vote down

You can't.

Well, of course you could, however an int (System.Int32) is not big enough to hold every possible decimal value.

That means if you cast a decimal that's larger than int.MaxValue you will overflow, and if the decimal is smaller than int.MinValue, it will underflow.

What happens when you under/overflow? One of two things. If your build is unchecked (i.e., the CLR doesn't care if you do), your application will continue after the value over/underflows, but the value in the int will not be what you expected. This can lead to intermittent bugs and may be hard to fix. You'll end up your application in an unknown state which may result in your application corrupting whatever important data its working on. Not good.

If your assembly is checked (properties->build->advanced->check for arithmetic overflow/underflow or the /checked compiler option), your code will throw an exception when an under/overflow occurs. This is probably better than not; however the default for assemblies is not to check for over/underflow.

The real question is "what are you trying to do?" Without knowing your requirements, nobody can tell you what you should do in this case, other than the obvious: DON'T DO IT.

If you specifically do NOT care, the answers here are valid. However, you should communicate your understanding that an overflow may occur and that it doesn't matter by wrapping your cast code in an unchecked block

unchecked
{
  // do your overflows here
}

That way people coming behind you understand you don't care, and if in the future someone changes your builds to /checked, your code won't break unexpectedly.

If all you want to do is drop the fractional portion of the number, leaving the integral part, you can use Math.Truncate.

decimal actual = 10.5M;
decimal expected = 10M;
Assert.AreEqual(expected, Math.Truncate(actual));
link|flag
1  
Though I suspect they're the same thing under the hood if the input is a decimal, I feel more comfortable using Decimal.Truncate than Math.Truncate, since the latter also accepts doubles and thus can be understood to be able to truncate even numbers that are not base 10, as opposed to Decimal.Truncate, which is a true truncation of a base 10 number. – Brian Jun 24 at 20:55
vote up 0 vote down

A neat trick for fast rounding is to add .5 before you cast your decimal to an int.

decimal d = 10.1m;
d += .5m;
int i = (int)d;

Still leaves i=10, but

decimal d = 10.5m;
d += .5m;
int i = (int)d;

Would round up so that i=11.

link|flag
2  
Why bother doing this when there's Math.Floor and Math.Ceiling? – Badaro Aug 31 at 3:05
At the time, I was fairly new to C# and for some reason I didn't realize these functions existed. It's actually a trick I learned from C/C++, where it was obviously more useful. – DeadlyBrad42 Sep 26 at 17:34
vote up -2 vote down

The fastest way would be to search google for the exact title of your question and then clicking the first link.

link|flag
vote up 3 vote down
int i = (int)d;

will give you the number rounded down.

If you want to round to the nearest even number (i.e. >.5 will round up) you can use

int i = (int)Math.Round(d, MidpointRounding.ToEven);

In general you can cast between all the numerical types in C#. If there is no information that will be lost during the cast you can do it implicitly:

int i = 10;
decimal d = i;

though you can still do it explicitly if you wish:

int i = 10;
decimal d = (decimal)i;

However, if you are going to be losing information through the cast you must do it explicitly (to show you are aware you may be losing information):

decimal d = 10.5M;
int i = (int)d;

Here you are losing the ".5". This may be fine, but you must be explicit about it and make an explicit cast to show you know you may be losing the information.

link|flag
vote up 4 vote down
	decimal d = 2;
	int i = (int) d;

Works just fine

link|flag
Careful, with an explicit conversion information might be lost. – Phaedrus Feb 1 at 18:17
1  
When converting from decimal to int, information will almost always be lost but I believe that's kinda the point. – Dinah Apr 24 at 19:31
vote up 4 vote down

System.Decimal implements the IConvertable interface, which has a ToInt32() member. Does calling System.Decimal.ToInt32() work for you?

link|flag
vote up 23 vote down

Use Convert.ToInt32 from mscorlib as in

decimal value = 3.14m;
int n = Convert.ToInt32(value);

See MSDN. You can also use Decimal.ToInt32. Again, see MSDN. Finally, you can do a direct cast as in

decimal value = 3.14m;
int n = (int) value;

which uses the explicit cast operator. See MSDN.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.