What is the difference between Int32 and UInt32?

If they are the same with capacity range capabilities, the question is for what reason UInt32 was created? When should I use UInt32 instead of Int32?

link|improve this question

63% accept rate
Do you know the difference between signed and unsigned integers? – Aryabhatta Feb 21 '10 at 20:04
@Moron: Yen I know. just thinking accidentally about UInt32 as 'unmanaged int32' instead of 'unsigned int32'. hhaaa!! – Mendy Feb 21 '10 at 20:11
Voting to close as "too localized", as this question is only useful to people who think that UInt32 means "unmanaged int32". I don't think there are any more of those people left. – John Saunders Feb 21 '10 at 21:25
@Jhon: I agree with you. – Mendy Feb 21 '10 at 21:31
feedback

4 Answers

up vote 6 down vote accepted

UInt32 does not allow for negative numbers. From MSDN:

The UInt32 value type represents unsigned integers with values ranging from 0 to 4,294,967,295.

link|improve this answer
+1 for explaining what the U was for. – tsilb Feb 21 '10 at 20:09
feedback

An integer is -2147483648 to 2147483647 and an unsigned integer is 0 to 4294967295.

This article might help you:

http://www.csharp-station.com/Tutorials/Lesson02.aspx
link|improve this answer
feedback

uint32 is an unsigned integer with 32 bit which means that you can represent 2^32 numbers (0-4294967295).

however in order to represent negative numbers one bit of the 32 bits is reserved to indicate positive or negative number. this leaves you with 2^31 possible numbers in the negative and also in the positive. the resulting range is -2147483648 to 2147483647 (positive range includes the value 0, hence only 2147483647). this representation is called int32.

you should choose unsigned for numbers which can't get negative by definition since it offers you a wider range, but you should keep in mind that converting from and to int32 is not possible since int32 can't hold the range of uint32 and vice versa.

link|improve this answer
feedback

UInt32 is unsigned. It can't be used to represent negative numbers but can hold greater positive numbers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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