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
string is an alias for the type System.String, and int is an alias for System.Int32. Therefore, use to your preference.
string
System.String
int
System.Int32