can any one explain with examples
Related Discussion: Most efficient way to concatenate strings?
string s = "a";
s += "b"; // this will create a new string object
StringBuilder sb = new StringBuild();
sb.Append("a");
sb.Append("b"); // appends to existing StringBuilder
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With