0
kicks
String.Format Isn't Suitable for Intensive Logging
Unlike the common conception, the StringBuilder class doesn't always offer better performance/memory usage results than other string concatenation methods (Join, Concat or the +operator).
This post benchmarks the alternatives and explains the key differences between them.