0
Can i use a 2 string to perfom and addition of their values?
5 Respostas
+ 3
yes, exist the concat method:
string s1="hello";
string s2="world";
string s3="";
s3=string.Concat(s1,s2);
+ 1
Yes, that is called concatenation. For example:
string s1 = "Hello ";
string s2 = "World";
Console.Write(s1+s2);
0
yes
0
string a = "z";
string b = "q";
string c = "";
c = a + b;
//c = "zq"
0
yes