Question:What is the difference between int and System.Int32 CLR types?
A int represents a 16-bit integer while System.Int32 represents a 32-bit integer.
B int is just an alias for System.Int32, there is no difference between them.
C int represents a 64-bit integer while Int32 represents a 32-bit integer.
D None of these.
+ AnswerB
+ Report