Deepak  Kamboj
What is the difference between int and int32?
By Deepak Kamboj in ADO.NET on Jul 01 2013
  • Poornima
    Aug, 2013 6

    int is the alias name for int32 in C#

    • 4
  • Deeksha Pandit
    Jun, 2016 17

    Difference between int and Int32:int is an alias name for Int32. it is short cut to right System.Int32 in c#. both can be used in your program.

    • 2
  • Bharathi Raja
    Jan, 2018 20

    Int16: 2 bytes Int32 and int: 4 bytes Int64 : 8 bytes

    • 1
  • Sagar
    Sep, 2016 21

    int is a primitive type allowed by the C# compiler, whereas Int32 is the Framework Class Library type (available across languages that abide by CLS). in c# we write int and in vb.net we write integer

    • 1
  • Suresh Babu Maddela
    Aug, 2016 22

    int32 allows null values where as int doesnt allow null values

    • 1
  • Sunil Babu
    Apr, 2016 3

    int is 64bit and int32 is 32bit

    • 0
  • Srinivas Pabballa
    Aug, 2015 28

    int is a primitive data type in c# .net language System.Int32 refers the base class of int in c# .net This System.Int32 is base type for all the .net languages such as integer in vb.net and also other all the .net languages to find out the base type of a data type we use typeof constant as like below Console.WriteLine(typeof(int)) typeof is a constant which will return the base type of the given data type

    • 0
  • Pramod Lawate
    Aug, 2013 26

    For the Declaration Purpose we used int like int i = 1; but for the conversion purpose we have to use Convert.Int32(); Function because int32 is CTS function.

    • 0
  • Sonali Chougule
    Aug, 2013 19

    "int" is a data type keyword defined by the language, C#. Int32 is a data type defined by the .NET Common Type System (CTS).

    • 0
  • Sreekanth Reddy
    Jul, 2013 9

    System is a base class for int32.int i=10;from the above instead of "int" i can write "system.int32" where system is a pre defined class.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS