Can C# store more precise data than doubles?

后端 未结 3 1260
无人共我
无人共我 2020-12-11 15:44

double in C# don\'t hold enough precision for my needs. I am writing a fractal program, and after zooming in a few times I run out of precision.

I ther

3条回答
  •  -上瘾入骨i
    2020-12-11 16:39

    Check out BigInteger (.NET 4) if you need even more precision than Decimal gives you.

提交回复
热议问题