Tag: bigfloat

在C#中有BigFloat类吗?

System.Numerics.BigInteger可以将大整数相乘,但浮点数是否有相同的types? 如果没有,我可以使用免费的图书馆吗? //this but with floats System.Numerics.BigInteger maxint = new BigInteger(int.MaxValue); System.Numerics.BigInteger big = maxint * maxint * maxint; System.Console.WriteLine(big);