5 Nov 2014•less than a minute read•6766 views
Performant reverse string extension method
As part of a new feature on a nuget package I am working on, I wanted to reverse a string into a new string. A simple request I thought, and indeed it was. However it was slow. Here is a version that performs better
#extension-methods#csharp#performance#string#reverse