Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is the purpose of c#?

0 Answers  


Why do we need delegates in c#?

0 Answers  


Write down the c# syntax to catch an exception

0 Answers  


Explain the functionalities of satellite assembly?

0 Answers   Siebel,


What is an array of arrays called?

0 Answers  


Does unity use c++ or c#?

0 Answers  


Explain how do you convert a value-type to a reference-type?

0 Answers  


What are native functions?

0 Answers  


I have to create a windows application using C# .net to Modifiy the XML file. The application have to show the node and node value. plz help me.

3 Answers   Merrill Lynch,


What is the default value of decimal in c#?

0 Answers  


Is c# difficult to learn?

0 Answers  


How to make a class non-inheritable other than sealed?

7 Answers  


Categories