3
Answers

how to add space when concanating two Strings in .net?

Hardik Patel

Hardik Patel

11y
1.9k
1
how to add space when concanating two Strings in .net?

ex.
text1.text = "Hardik"
text2.text = "Patel"

string fname = text1.text + text2.text

result ="Hardikpatel"  but i want "Hardik Patel"
Answers (3)