标签: c# floating-point
可能重复: extracting mantissa and exponent from double in c#
如何在浮点数中分离分数和指数?
在C ++中,我能够使用“union”,但C#中不允许使用联合。
union {fix lc; long double cv;} ldblun;
答案 0 :(得分:1)
BitConverter.DoubleToInt64Bits()
然后转移并掩饰。