In C#, I've seen that some people use lower case string and sometimes String with Uppercase S. Is there any difference in using them?
string type = "Small";
String type = "Large";
In C#, I've seen that some people use lower case string and sometimes String with Uppercase S. Is there any difference in using them?
string type = "Small";
String type = "Large";