3

Possible Duplicate:
what is the equivalent for java class : BigDecimal in c#

I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# installed. How would I achieve arbitrary precision in C#? I was thinking of using binary strings but I may run into some trouble when multiplying the two.

Community
  • 1
  • 1
ninjaneer
  • 6,951
  • 8
  • 60
  • 104

1 Answers1

1

See What is the equivalent of the Java BigDecimal class in C#?

You could create your own BigDecimal that used BigInteger under the covers and kept track of where the decimal point would need to be.

Community
  • 1
  • 1
Jeff Moser
  • 19,727
  • 6
  • 65
  • 85