C# Basics: What is the difference between 'string' and 'System.String'

from blog The Angry Dev, | ↗ original
In C# string is an alias for System.String, So technically, there is no difference and they are exactly the same as comparing int and System.Int32, they will compile to exactly the same code. but… There is a complete list of all aliases to primative types (not all are primitive actually): object: System.Object string: System.String bool:...