BigDecimal
BigDecimal copied to clipboard
An arbitrary-precision decimal (base 10) floating-point number class.
I'm now seeing this warning on compile in my experimental branch. > warning NETSDK1138: The target framework 'net5.0' is out of support and will not receive security updates in the...
Hi, thank you for this awesome library! I'd like to have this feature in your library. **Proposal/Summary** The rounding feature (up/down) is not supported by library **Rationale** It will all...
**Description** In the Readme there's an example which uses `BigDecimal.Pow(5d, 0.5d)` but this is no longer working as the Pow method no longer accepts a double value, only a BigInteger....
By default, division is very slow when the result is recurring. This takes about half a second, which is extremely slow: ```cs BigDecimal Result = (BigDecimal)5 / 3; ``` The...