exercism / csharp

Exercism exercises in C#.
https://exercism.org/tracks/csharp
MIT License
333 stars 339 forks source link

Correct wrong claim about StringBuilder performance. #2253

Closed Pedro-V closed 2 months ago

Pedro-V commented 2 months ago

The current text on the Dig Deeper article for the C# exercise "Reverse String" incorrectly says the StringBuilder approach has the worst performance of those listed, but it's actually the 2nd worst, behind the LINQ-based.

Probably just a typo, for which this PR provides a correction.