Tuesday, July 22, 2008

An Efficient Method of String Concatenation in C#

An Efficient Method of String Concatenation
A good way to concatenate strings in a loop or when performing multiple concatenations, is to use the StringBuilder class:

String s = "a"
s+="b"; //this is slow

StringBuilder sb = new StringBuilder();
sb.Append("a");
sb.Append("b");

No comments: