vote up 48 vote down star
6

From my understanding int and Int32 are the same thing in C#, but I've read a number of times that int is preferred over Int32 but without any reason given. So, what is the reason? Should I care?

flag
show 2 more comments

35 Answers

prev 1 2
vote up 0 vote down

In theory, the difference is significant. In practice, it is unlikely to matter at this point in time (September 2008).

Having said that....

"int" is a C# language keyword that implies nothing about the underlying structure of the data.

"Int32" is a CLR class named explicitly to indicate a 32-bit structure.

I can forsee no reasons why the meaning of "Int32" should ever change. And even if it should, the runtime will ensure that a program compiled against a particular CLR version will always run against that CLR version, and not another.

C# compilers are less bound to the CLR version. And since "int" bears no explicit information on underlying structure, it is possible that the language designers may decide in some future version to redefine it to mean Int64, when 64-bit platforms become the de facto standard. A breaking change here may be more palatable especially considering that if the compiler comes into play, the developer is very likely already at a point where significant breaking changes have come into play.

The standard wisdom from Jeffrey Richter is to use Int32 as well, but his arguments are weak, IMHO. They seem to boil down to tailoring your code for people who aren't used to reading C#, which isn't a very strong argument, to my mind.

link|flag
vote up 0 vote down

Use of Int or Int32 are the same Int is just sugar to simplify the code for the reader.

Use the Nullable variant Int? or Int32? when you work with databases on fields containing null. That will save you from a lot of runtime issues.

link|flag
vote up 0 vote down

I always use the aliased types (int, string, etc) when defining a variable and use the real name when accessing a static method:

int x, y;
...
String.Format ("{0}x{1}", x, y);

It just seems ugly to see something like int.TryParse(). There's no other reason I do this other than style.

link|flag
vote up 0 vote down

I'd recommend using Microsoft's StyleCop, at http://code.msdn.microsoft.com/sourceanalysis

It is like FxCop, but for style-related issues. The default configuration matches Microsoft's internal style guides, but can be customised for your project.

Can take a bit to get used to but definitely makes your code nicer.

You can include it in your build process to automatically check for violations.

link|flag
vote up -1 vote down

Some compilers have different sizes for int on different platforms (not C# specific)

Some coding standards (MISRA C) requires that all types used are size specified (i.e. Int32 and not int).

It is also good to specify prefixes for different type variables (e.g. b for 8 bit byte, w for 16 bit word, and l for 32 bit long word => Int32 lMyVariable)

You should care because it makes your code more portable and more maintainable.

Portable may not be applicable to C# if you are always going to use C# and the C# specification will never change in this regard.

Maintainable ihmo will always be applicable, because the person maintaining your code may not be aware of this particular C# specification, and miss a bug were the int occasionaly becomes more than 2147483647.

In a simple for-loop that counts for example the months of the year, you won't care, but when you use the variable in a context where it could possibly owerflow, you should care.

You should also care if you are going to do bit-wise operations on it.

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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