Arbitrary-Precision Decimals in C#

c#, decimal, j#, math, precision

Solution

Big Decimal:

- Install the J# runtime (it's free): http://www.microsoft.com/downloads/en/details.aspx?familyid=f72c74b3-ed0e-4af8-ae63-2f0e42501be1&displaylang=en

Big Int (If you like J.D.'s solution, or want to come up with a rational number/fraction type class. That, and I somehow missed that you were looking for decimals, not ints):

- Get C# 4.0: Big integers in C#

- Get the IntX class: http://intx.codeplex.com/

Problem

Possible Duplicates: Big integers in C# C# unlimited significant decimal digits (arbitrary precision) without java I read the question at Arbitrary precision decimals in C#? but I don't have the J# library. I need a library for arbitrary precision decimals with C#.

Original source

Related problems