Process Memory limit of 64-bit process

后端 未结 5 2017
执念已碎
执念已碎 2021-02-05 08:02

I currently have a 32-bit .Net application (on x86 Windows) which require lots of memory. Recently it started throwing System.OutOfMemoryException\'s.

So, I am planning

5条回答
  •  隐瞒了意图╮
    2021-02-05 08:37

    Actually on an x64 OS if your application is compiled for AnyCPU then you don't need to do anything special. The JIT will create an x64 image at runtime or an x86 image when run on a 32 bit system.

提交回复
热议问题