string 是String的别名

但使用时有一个约定:

定义变量用string,调用静态方法时使用String

如:

string s1 = "Hello";

string s2 = " World";

string s3 = String.Concat(s1, s2);