+ 1
Is this the correct way for writing a concatenation program?
There are no build errors but I feel like I'm missing something. string strInput1 = txtInput1.Text; string strInput2 = txtInput2.Text; string strOutput = txtInput1.Text + txtInput2.Text; txtOutput.Text = strOutput;
5 ответов
+ 2
I meant to be like this: txtInput.Text + " " + txtInput2.Text
0
if u give it space to separate them ,that's will be nice..
0
the code is fine though ?
0
don't forget ;
0
alright, thank you bro :)