Version 1.1.14

Date 2019-08-05 (1,929 days ago)
Downloads 713 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">Changelog

  • Added null check to JObjectExtensions.GetArray extension method - thanks to @bielu for the PR (see ab8c52e)
    While an array item that is null is typically a sign of a problem with the underlying JSON data, the method will now skip items that are null.

  • All logic for parsing various types of numbers should be culture invariant (see db820e4)
    The various number parsing methods in the StringUtils class did not specify a culture, and the parsing would therefore fall back to the culture of the current thread. With this release, those methods now specify that an invariant culture should be used for the parsing (as it should have been all along).