As you already know string
is just alias for System.String
. But what should I use? it just personal preference.
In my case, I love to use string
rather than use System.String
because String
requires a namespace using System;
or a full name System.String
.
So I believe the alias string
was created for simplicity and I love it!