| Date | 2019-07-24 (2,334 days ago) |
|---|---|
| Downloads | 7,701 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 |
Marked legacy code in StringHelper and StringHelpers classes as obsolete (see bc9af3b)
Both were replaced by the StringUtils class a while ago, but the obsolete attributes were either missing or referencing the wrong class.
Updated the the Parse method in the EssentialsDate class to return the correct type (see 0c1df51 )
The method would return an instance of EssentialsTime, which was wrong. It now correctly turns an instance of EssentialsDate.
Added ParseExact, TryParse and TryParseExact methods to the EssentialsDate class (see cc11946)
Updated the TimeConverter JSON converter to support serializing and deserializing EssentialsDate (see a0d4332)
Updated the EssentialsDate class to implement IComparable (see aad3cff)
The commit also overrides the Equals, GetHashCode methods as well as implements a number of comparison overloads.