what is the difference between int and Int32?

Answers were Sorted based on User's Feedback



what is the difference between int and Int32?..

Answer / vijay

Basically int is the short form of Int32.

The important difference is

"int" is a C# language keyword that implies nothing about
the underlying structure of the data where as "Int32" is a
CLR class named explicitly to indicate a 32-bit structure.

Is This Answer Correct ?    43 Yes 10 No

what is the difference between int and Int32?..

Answer / srini

Data type Int32 is defined by Common Type System
(System.Int32). The data type 'int' is 32 bit integer in
C#. So the 'int' type is equal to 'Int32'. The c#
type 'int' is alias name of System.Int32.

Is This Answer Correct ?    35 Yes 10 No

what is the difference between int and Int32?..

Answer / afazal

There are the below differences between int and int32
1. It is good practice in the programming that code should
be more readable, when you will use int32 it is explicitly
specifying that it is a 32 bit integer, even int is also 32
bit integer.
2. int is a C# keyword but int32 is belong to CTS, int32 is
a structure of System namespace (System.int32)

View my profile by below link
http://afazal.blogspot.com/2007/12/afazal-profile.html

Is This Answer Correct ?    9 Yes 2 No

what is the difference between int and Int32?..

Answer / nihar

Int32 is the System.Int32 class, while int is an alias for
System.Int32.
The same applies for String (uppercase S) which is
System.String, while string (lowercase S) is an alias for
System.String.
So basically int is the same thing as Int32, and string is
the same thing as Int32

Is This Answer Correct ?    7 Yes 2 No

what is the difference between int and Int32?..

Answer / srinivas.r

int is a value datatype.
Whereas INT32 is a wrapper class.

Is This Answer Correct ?    4 Yes 14 No

Post New Answer

More C Sharp Interview Questions

Consider the following pieces of C# code: a. interface I1 {/*......*/} interface I2 {/*......*/} struct Point : I1,I2 {/* ..... */} b. struct Book{ int bookId; struct Book b; } c. using M=Mystruct; struct MyStruct{ int id; } class MyClass{ static void Main(string[] args){ M m = new M(); } } d. struct Sample{ Sample ref x; } Which of the above are correct? Choose one of the options below. a, c and d are right a only right a and c are right d only wrong None of the listed options

3 Answers  


Are tuples mutable c#?

0 Answers  


What is the difference between struct and class c#?

0 Answers  


What is use of list in c#?

0 Answers  


What is the difference between console and windows application?

0 Answers  






What are the different types of constructors?

0 Answers  


Explain why do I get an error (cs1006) when trying to declare a method without specifying a return type?

0 Answers  


What is the state of Garbage Collection after dispose() call info C# code?

4 Answers  


What does xpath return?

0 Answers  


Can a loop recorder detect a heart attack?

0 Answers  


What is delay signing..??

1 Answers   HCL,


If a method's return type is void, can you use a return keyword in the method?

0 Answers  


Categories