Arbitrary precision decimals in C#?
Asked Answered
R

1

7

Is there an arbitrary-precision decimal class available for C#? I've seen a couple of arbitrary precision integer classes, but that's not quite the same thing.

Ronironica answered 7/3, 2009 at 11:0 Comment(0)
G
6

You can use J# library's java.math.BigDecimal class if you have it installed. Just add a reference to vjslib.

/me remembers one of the betas in which we had System.Numeric.BigDecimal, sigh
Geis answered 7/3, 2009 at 11:4 Comment(2)
Unfortunately, I don't. Also, other constraints would prevent me from shipping a JDK with my product to be sure it worked! :)Ronironica
J# library is not JDK. It's a .NET thing. There is a separate redist library however.Geis

© 2022 - 2024 — McMap. All rights reserved.