Interview Question
Qus: What is the difference between int and int32?
Answers (2)
int is a primitive type allowed by the C# compiler, whereas Int32 is the Framework Class Library type. In fact, int translates to Int32 during compilation. int basically is an alias for Int32.