I'm looking for some data type what to use in C# .NET for storing very big decimal number in range <0;1) eg. 1000 decimals (as much as possible, the more is better). I will need to use this number for basic mathematical operations (+, -, *, /, <, >). Data type decimal
is too small for me. I know BigInteger
, but it is not for decimal number and it's operations.
Thank you for any help.