Differences between 32 and 64-bit .NET (4) applications

前端 未结 4 1371
余生分开走
余生分开走 2020-12-05 06:05

What are the differences between 32 and 64-bit .NET (4) applications?

Often 32-bit applications have problems running on 64-bit machines and conversely. I know I ca

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-05 06:20

    x64 managed code will use Streaming SIMD Extensions (SSE) for double/float computation instead of x87 Floating Point Unit (FPU) when using x86 managed code.

提交回复
热议问题