What does the “Prefer 32-bit” compiler flag mean for Visual Studio (C#, VB)?

后端 未结 4 1441
萌比男神i
萌比男神i 2020-12-05 13:17

Just got the Visual Studio 11 developer preview installed. I see a new option in the project properties called \"Prefer 32-bit\" when compiling a managed (C#, VB) applicatio

4条回答
  •  温柔的废话
    2020-12-05 14:18

    It likely indicates the app is AnyCpu but when 32 bit is available it shouold run as such. This makes sense - 64 bit apps use more memory, and sometimes you just dont need the memory space ;)

提交回复
热议问题