DEV Community

Discussion on: Benchmarking and Exploring C#'s Dynamic Keyword

Collapse
 
msaprogrammer profile image
Mohammed Sajid

Thanks for the blog, it's very interesting.for string performance you can also use stringBuilder to concatenate :)

Collapse
 
mokenyon profile image
Morgan Kenyon

Thanks for the read. I agree, for a lot of string concatenation it's usually better to use StringBuilder than regular strings.