Are there any considerations needed to be taken running your .net program on x64 vs x86?

后端 未结 7 1062
Happy的楠姐
Happy的楠姐 2021-01-17 11:05

I believe the architecture type (x86 vs x64) is abstracted away for you when making .Net programs, but are there any other considerations that can cause problems?

7条回答
  •  感情败类
    2021-01-17 11:11

    x64 will allow you to address more memory, but given the same code, it will use more memory than x86.

提交回复
热议问题