How do I convert uint to int in C#?
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.
|
|
Given:
or
--EDIT Included info as mentioned by kek444 |
|||||||||||||||
|
|
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. |
||||
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. |
|||
|
|
|
Assuming that the value contained in the uint can be represented in an int, then it is as simple as:
|
||||
|
|
|
I would say using tryParse, it'll return 'false' if the uint is to big for an int. |
|||
|
|