NodaMoney
NodaMoney copied to clipboard
NodaMoney provides a library that treats Money as a first class citizen and handles all the ugly bits like currencies and formatting.
Take a `Currency` object and do a serialization roundtrip. The resulting object contains only `Code` property value, the others are on default values: ```csharp var original = Currency.FromCode("CZK"); // Code...
Hey, I noticed there is a dependency on Nestonsoft.Json. After looking more closely, i'm not sure why this is even there because the the only csproj in this solution that...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
By default the Money instance will round every math operation (+. -, *. /, etc) that might have fractions of cents using a RoundingMode. This will cause issues with multiple...
Hi! I'm looking to integrate this in an environment running mono. Are there any dependencies on Windows libraries? Thank you, Michael
Inspired by the comment in issue #83, which makes a lot of sense. Currency is not similar to a value type. Also turned Money in a readonly struct, and custom...
Hi, Since Noda's Money is a struct type, we cannot use it as field type for our entities in our .Net Core 2.0 project, using Entity Framework Core 2.0. Since...
Just wonder due to it hold a lot of fields, which will cause a large block of memory to copy whenever it got assigned a value.
Thanks for this, I'm using this now on a .NET Core 3 project and seems like it's working! I was attempting to use Money.TryParse which always uses Currency.CurrentCurrency which always...