string
is just an alias for System.String
. The compiler will treat them identically.
The only practical difference is the syntax highlighting as you mention, and that you have to write using System
if you use String
.
string
is just an alias for System.String
. The compiler will treat them identically.
The only practical difference is the syntax highlighting as you mention, and that you have to write using System
if you use String
.