Date | 2020-06-11 (1,618 days ago) |
---|---|
Downloads | 27K downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET Standard 1.1 .NET Standard 1.3 .NET 4.5 .NET 4.6 .NET 4.7 |
#installation
">Installation#changelog
">ChangelogAdded new OrderBy
overloads to the EnumerableExtensions
class (see #12
and 2bd1ed1
)
The new OrderBy
overloads adds support for specifying an instance of IComparer<TKey>
to control how the elements are sorted.
For instance StringComparer.Create(CultureInfo.GetCultureInfo("da-DK"), false)
may be specified to ensure elements are sorted following Danish language rules (aa
is treated as å
).
Added lots of new logic for working with day names and month names (82c0814
and 334d815
)
This release adds new methods and method overloads to the TimeUtils
class as well as the DateTimeExtensions
and DateTimeOffsetExtensions
classes.