In C#, int and Int32 are the same thing, but I\'ve read a number of times that int is preferred over Int32 with no reason
int
Int32
There is no difference between int and Int32, but as int is a language keyword many people prefer it stylistically (just as with string vs String).
string
String