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
You should not care in most programming languages, unless you need to write very specific mathematical functions, or code optimized for one specific architecture... Just make sure the size of the type is enough for you (use something bigger than an Int if you know you'll need more than 32-bits for example)