Example (note the case):
string s = \"Hello world!\"; String s = \"Hello world!\";
What are
string is an alias (or shorthand) of System.String. That means, by typing string we meant System.String. You can read more in think link: 'string' is an alias/shorthand of System.String.
string
System.String