String vs string in C#

mmutilva picture mmutilva · Oct 18, 2008 · Viewed 58.3k times · Source

Example (note the case):

string s = "Hello world!";
String s = "Hello world!";

What are the guidelines for the use of each? And what are the differences?

Answer