Qus:    What is the difference between int and int32?
Oct 24, 2020 13:38 DotNet 2 Answers Views: 1181 ANANYA
Prev Next
Answers (2)
PADMAKEECHU Oct 28, 2020 09:56
Answer:   There is no difference between int and int32. System. Int is an alias name for System.Int32 which is a .Net Class.

PARTH Nov 09, 2020 13:51
Answer:   No Difference.

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.

Post Your Answer
Guest User

Not sure what solution is right for you?

Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.


Let`s Connect