views:

98

answers:

1

Now that biginteger (System.Numerics.BigInteger) support has been added in C# 4.0, it would be nice if arbitrary precision floating point/fixed point was also possible. Are there any good (preferably free) third party libraries that offer efficient arbitrary precision floating/fixed point capabilities?

+1  A: 

Arbitrary precision floating- and fixed-point numbers can easily be coded as ratios of BigIntegers. I don't know of any off-the-shelf libraries for them but then I don't know much about C#.

High Performance Mark