up vote 116 down vote favorite
11
share [g+] share [fb]

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?

link|improve this question
1  
Post by the Skeet about this: blogs.msdn.com/csharpfaq/archive/2004/03/12/88418.aspx – jjnguy Sep 1 '09 at 5:01
9  
int is easier to type :) – JohnBubriski Sep 14 '09 at 19:17
show 2 more comments
feedback

35 Answers

1 2

A while back I was working on a project with Microsoft when we had a visit from someone on the Microsoft .net CLR product team. This person coded examples and when he defined his variables he used “Int32” vs. “int” and “String” vs. “string”. I had remembered seeing this style in other example code from Microsoft. So, I did some research and found that everyone says that there is no difference between the “Int32” and “int” except for syntax coloring. In fact, I found a lot of material suggesting you use “Int32” to make your code more readable. So, I adopted the style.

The other day I did find a difference! The compiler doesn’t allow you to type enum using the “Int32” but it does when you use “int”. Don’t ask me why because I don’t know yet.

Example:

public  enum MyEnum : Int32
{
    AEnum = 0
}

This works.

public enum MyEnum : int
{
    AEnum = 0
}

Taken from: Int32 notation vs. int

link|improve this answer
feedback

I remember the old borland days and int was not only dependant on your machine but on your compiler. So the real point here is -- if you are a sloppy coder then use whatever and continue being that way.

If you are worried about memory management, then consider why c# is a strongly typed language and that you have int32,int64 and int16 for a reason.

Consider this:

for(int i=0;i<100;i++){ } and for(Int16 i=0;i<100;i++){ } and for(Int64 i=0;i<100;i++{ }

which one of these is most efficient. Int16! You could argue that in the IL they are the same but what if you have the calling function threaded 1000 times. That's already 4k (sic) of memory that you're wasting JUST THERE.

Real programmers would use the smaller designation despite it possibly not being different because semantically it's more correct and might in some future compiling matter. The rest of you amateurs can go on not care about the minute details and your code will suck because you aren't caring about it. It's like a freekin' plant. Love it! Don't be sloppy!

link|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

It is not a good practice to use int instead of Int32 as many of answers state but there is a good reason for that. Int32 is always 32 bit, int is 32 bit in 32x system and 64 in 64x system.

link|improve this answer
2  
That is not true. int is an alias for System.Int32 on both 32-bit and 64-bit systems. See the C# Language Specification, section 4.1.4 "Simple types". – Jeremy Stein Dec 21 '10 at 20:16
feedback
1 2

Your Answer

 
or
required, but never shown

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