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
1.4m articles
1.4m replys
5 comments
57.0k users