Strings in C# — a practical guide to C# strings with clear examples you can reuse in real projects.
C# Tutorial Series (47/121). Prefer one article? Read the complete C# tutorial.
Short description
Concatenation in loops should use StringBuilder.
String
string name = "Asha";
string hi = "Hello, " + name;