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
It doesn't matter. int is the language keyword and Int32 its actual system type.
See also my answer here to a related question.