Using non-primitive variable type in C # can affect performance?
I've seen a lot of code in which, instead of using primitive C # types, many use types similar to other languages that IDE supports.
I already questioned a programmer why he did this and he told me it was because he liked the color combination, hehe ...
For example:
Primitivo --> Utilizado
int --> Int32;
string --> String;
long --> Int64;