NaturalSort.Extension v3.0.0 Release Notes
Release Date: 2020-05-30 // over 4 years ago-
- ๐ Changed the API to use more general
StringComparison
enum or the more generalIComparer<string>
(instead ofStringComparer
). Note that usingStringComparison
instead ofIComparer<string>
/StringComparer
should have better performance as there's no need to allocate substrings. - Made NaturalSortComparer public, so you can construct it directly without an extension method.
- ๐ Changed the extension class name (possibly a breaking change if you're not calling it via the extension method).
- ๐ Changed the API to use more general
Previous changes from v2.2.1
-
- ๐ Fixed #4 infinite loop in v2.2.0 (thanks @El-Gor-do)