String Concatenation

suggest change

String Concatenation can be done by using the System.String.Concat method, or (much easier) using the \+ operator:

string first = "Hello ";
string second = "World";

string concat = first + second; // concat = "Hello World"
concat = String.Concat(first, second); // concat = "Hello World"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents