Posts by Hélder Gonçalves • 161 points
1 post
-
6
votes3
answers920
viewsA: Can using non-priminal variable type in C# affect performance?
int is an alias for System.Int32, just as string is for System.String. They compile the same code, so technically there will be no difference in performance between the two. List of aliases of C#:…