C# +运算符


本文向大家介绍C# +运算符,包括了C# +运算符的使用技巧和注意事项,需要的朋友参考一下

示例

string s1 = "string1";
string s2 = "string2";

string s3 = s1 + s2; // "string1string2"