.NET Framework Library for arbitrary digit precision

后端 未结 8 1198
执笔经年
执笔经年 2020-12-21 15:05

I\'m reviving this question, and making it more specific: Is there a .NET framework library that supports numbers with arbitrary digits of precision?

8条回答
  •  时光取名叫无心
    2020-12-21 15:22

    Can you wait for .NET 4.0? They're bringing BigInteger directly into the Framework.

    On the other hand, if you can't wait, then the J# runtime includes built-in support for java.math.BigInteger and BigDecimal. This is redistributable just like the rest of the .NET Framework.

提交回复
热议问题