Float/double precision in debug/release modes

后端 未结 5 698
予麋鹿
予麋鹿 2020-11-28 11:22

Do C#/.NET floating point operations differ in precision between debug mode and release mode?

5条回答
  •  温柔的废话
    2020-11-28 12:16

    In fact, they may differ if debug mode uses the x87 FPU and release mode uses SSE for float-ops.

提交回复
热议问题