In C#, the keywords for built-in types are simply aliases for corresponding types in the System namespace.
System
Generally, it makes no difference whether yo
It doesn't matter. int is basically a shorthand for System.Int32 they are almost perfectly interchangable. Consider it a #define if you like (but C# doesn't allow #defines like that).
int
System.Int32