Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I convert uint to int in C#?

share|improve this question
3  
Be aware that you can overflow the value of an int if you do this. – Powerlord Jul 15 '09 at 14:47
Yes, you'll have to be sure to gracefully handle the exception by putting your object in an acceptable state if the value of the uint is greater than Int32.MaxValue (which happens to be 2,147,483,647) – Michael Meadows Jul 15 '09 at 14:49

7 Answers

up vote 55 down vote accepted

Given:

 uint n = 3;

int i = checked((int)n); //throws OverflowException if n > Int32.MaxValue
int i = unchecked((int)n); //converts the bits only 
                           //i will be negative if n > Int32.MaxValue

int i = (int)n; //same behavior as unchecked

or

int i = Convert.ToInt32(n); //same behavior as checked

--EDIT

Included info as mentioned by kek444

share|improve this answer
Yes, idd, sorry for that, problem with VS2008 parser... – Lieven Cardoen Jul 15 '09 at 14:48
1  
Note that if the uint is greater than int.MaxValue you'll get a negative result if you use a cast, or an exception if you use Convert.ToInt32. – LukeH Jul 15 '09 at 14:52
Which makes Convert.ToInt32 the better choice imo. – Simucal Jul 15 '09 at 14:57
3  
@Luke - No, not necessarily. When casting it depends on your project build settings as to whether checked or unchecked arithmentic is the default. In addition, you can modify this on a local basis using the checked and unchecked keywords. – Greg Beech Jul 15 '09 at 14:59
@Greg: That's true, but the default out-of-the-box setting is unchecked. – LukeH Jul 15 '09 at 15:03

Take note of the checked and unchecked keywords.

It matters if you want the result truncated to the int or an exception raised if the result doesnt fit in signed 32 bits. The default is unchecked.

share|improve this answer
2  
I believe the default is unchecked. +1 for pointing this out--the source of hard to debug errors. – Will Jul 15 '09 at 14:51
You are right, my bad, thanks! -"The default value for this option is /checked-" – kek444 Jul 15 '09 at 14:55

Convert.ToInt32() takes uint as a value.

share|improve this answer
int intNumber = (int)uintNumber;

Depending on what kind of values you are expecting, you may want to check how big uintNumber is before doing the conversion. An int has a max value of about .5 of a uint.

share|improve this answer
uint i = 10;
int j = (int)i;

or 
int k = Convert.ToInt32(i)
share|improve this answer

Assuming that the value contained in the uint can be represented in an int, then it is as simple as:

int val = (int) uval;

share|improve this answer

I would say using tryParse, it'll return 'false' if the uint is to big for an int.
Don't forget that a uint can go much bigger than a int, as long as you going > 0

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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