string
is equal to System.String
in VS2015 if you write this:
System.String str;
Than compiler will show potential fix to optimize it and after applying that fixe it will look like this
string str;
string
is equal to System.String
in VS2015 if you write this:
System.String str;
Than compiler will show potential fix to optimize it and after applying that fixe it will look like this
string str;