tags:

views:

70

answers:

2

Hello, I need to do maths on both floats and integers with much bigger accuracies and magnitudes than offered both by int/float/double in .net. Are there any libraries around that help with that? I recall there was something like that for c/c++.

+2  A: 

Yes and No. A simple internet search shows some interesting results. http://aaronfeng.blogspot.com/2006/05/net-biginteger-and-bigdecimal.html, for instance.

Take more time in phrasing the question for better answers.

pst
+1  A: 

CodePlex comes to the rescue:

1. Arbitrary length floating point library: W3b.Sine http://sine.codeplex.com/

2. Arbitrary length integer library: IntX http://intx.codeplex.com/

3. C# wrapper for well known GMP library: http://gnumpnet.codeplex.com/

LP, Dejan

Dejan Stanič